A drawing library modeled after Windows GDI
- CreateDC/ReleaseDC
- DrawText
- DrawRect
Bootstrapping eC compiling tools... | |
Building ecere... | |
Building ec... | |
Building ecp... | |
Building ecc... | |
Building ecs... | |
All done! | |
Building 2nd stage ecere... | |
/home/rudyv/github/ecere-sdk/ecere/src/sys/Archive.ec:1:14: error: unresolved identifier DRAW_BUFFER_COUNT | |
/home/rudyv/github/ecere-sdk/ecere/src/sys/Archive.ec:1:14: error: Array size not constant int (DRAW_BUFFER_COUNT) |
struct ModuleInfo { | |
String Name; | |
Array<Int16> Version; | |
String Author; | |
String Description; | |
}; | |
class Module { | |
import "ecere" | |
import "PasswordBox" | |
import "skinbtn" | |
class SignIn : Window | |
{ | |
caption = $"Welcome"; | |
background = { r = 253, g = 250, b = 240 }; | |
borderStyle = fixed; | |
hasMinimize = true; |
{ | |
"mappings": { | |
"properties": { | |
"NDC": { | |
"type": "keyword" | |
}, | |
"DrugName": { | |
"type": "text" | |
}, | |
"GenericName": { |
<?php | |
//require_once 'vendor/autoload.php'; | |
class RxCredentials { | |
/** | |
* Test members | |
* | |
* @var string Hello | |
* @soap | |
*/ |
export interface TableInfo { | |
tableId: string; | |
columns: Array<string>; | |
} | |
export interface StorageInfo { | |
[key: string]: string | TableInfo; | |
} | |
interface PageInfo { |
{ | |
"compilerOptions": { | |
/* Basic Options */ | |
"incremental": true, /* Enable incremental compilation */ | |
"target": "es2019", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019' or 'ESNEXT'. */ | |
"module": "esnext", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */ | |
"lib": [ | |
"es2019", | |
"dom" | |
], /* Specify library files to be included in the compilation. */ |
warning Error running install script for optional dependency: "/usr/share/.config/yarn/global/node_modules/bufferutil: Command failed. | |
Exit code: 1 | |
Command: node-gyp rebuild | |
Arguments: | |
Directory: /usr/share/.config/yarn/global/node_modules/bufferutil | |
Output: | |
gyp info it worked if it ends with ok | |
gyp info using [email protected] | |
gyp info using [email protected] | linux | x64 | |
gyp info find Python using Python version 3.8.3 found at \"/usr/bin/python3\" |
{ | |
"compilerOptions": { | |
"target": "es6", | |
"lib": [ "dom", "dom.iterable", "esnext" ], | |
"jsx": "react", | |
"jsxFactory": "React.h", | |
"module": "commonjs", | |
"moduleResolution": "node", |