A drawing library modeled after Windows GDI
- CreateDC/ReleaseDC
- DrawText
- DrawRect
| <?php | |
| //require_once 'vendor/autoload.php'; | |
| class RxCredentials { | |
| /** | |
| * Test members | |
| * | |
| * @var string Hello | |
| * @soap | |
| */ |
| { | |
| "mappings": { | |
| "properties": { | |
| "NDC": { | |
| "type": "keyword" | |
| }, | |
| "DrugName": { | |
| "type": "text" | |
| }, | |
| "GenericName": { |
| import "ecere" | |
| import "PasswordBox" | |
| import "skinbtn" | |
| class SignIn : Window | |
| { | |
| caption = $"Welcome"; | |
| background = { r = 253, g = 250, b = 240 }; | |
| borderStyle = fixed; | |
| hasMinimize = true; |
| struct ModuleInfo { | |
| String Name; | |
| Array<Int16> Version; | |
| String Author; | |
| String Description; | |
| }; | |
| class Module { | |
| 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) |
| <?php | |
| namespace App\Widgets; | |
| class Family extends Widget { | |
| /** | |
| * The configuration array. | |
| * | |
| * @var array | |
| */ | |
| protected $config = []; |
| { | |
| "$schema": "./node_modules/@angular/cli/lib/config/schema.json", | |
| "version": 1, | |
| "cli": { | |
| "packageManager": "yarn" | |
| }, | |
| "newProjectRoot": "projects", | |
| "projects": { | |
| "app": { | |
| "projectType": "application", |
| ERR<1295565>:eina_safety ../src/lib/efreet/efreet_ini.c:412 efreet_ini_localestring_get() safety check failed: ini->section == NULL | |
| ## Copy & Paste the below (until EOF) into a terminal, then hit Enter | |
| eina_btlog << EOF | |
| /usr/lib/libeina.so.1 0x7fd972d29b84 0x7fd972cff000 | |
| /usr/lib/libeina.so.1 0x7fd972d2adc1 0x7fd972cff000 | |
| /usr/lib/libeina.so.1 0x7fd972d2c469 0x7fd972cff000 | |
| /usr/lib/libeina.so.1 0x7fd972d44c04 0x7fd972cff000 | |
| /usr/lib/libefreet.so.1 0x7fd972da7c24 0x7fd972d9b000 | |
| /usr/lib/efreet/v-1.25/efreet_icon_cache_create 0x55f8ee6af785 0x55f8ee6ab000 |
| <?php | |
| $format = 'Va*'; | |
| die(print_r(unpack($format, pack($format, time(), "test")), true )); | |
| /** | |
| * Expected output: | |
| * Array | |
| * ( | |
| * [V] => 1635617836 |