Skip to content

Instantly share code, notes, and snippets.

View jerstlouis's full-sized avatar

Jerome St-Louis jerstlouis

View GitHub Profile
import "ecere"
class Form1 : Window
{
caption = $"Form1";
background = formColor;
borderStyle = sizable;
hasMaximize = true;
hasMinimize = true;
hasClose = true;
E:\ecere-sdk\ecere\src\sys>git diff DualPipe.c
diff --git a/ecere/src/sys/DualPipe.c b/ecere/src/sys/DualPipe.c
index c9eba7c..5029262 100644
--- a/ecere/src/sys/DualPipe.c
+++ b/ecere/src/sys/DualPipe.c
@@ -74,6 +74,12 @@ void DualPipe_Destructor(_DualPipe * dp)
}
if(dp->hProcess)
CloseHandle(dp->hProcess);
+#else
enum MyEnum { foo, bar, cool };
int myArray[MyEnum] = { 3, 4, 5 };
class App : Application
{
void Main()
{
MyEnum i;
for(i = 0; i < MyEnum::enumSize; i++)
class Foo { }
class App : Application
{
void Main()
{
Array<Foo> a { };
Array<Foo> b { };
Foo foo { };
import "ecere"
class MyThread : Thread
{
unsigned int Main()
{
form1.caption = "Hello!";
return 0;
}
}
import "ecere"
String generatePassword(int length)
{
String pass = new char[length+1];
int i;
for(i = 0; i < length; i++)
pass[i] = (char)GetRandom('A', 'Z');
pass[i] = 0;
return pass;
namespace gui::controls;
/*
selectionForeground = white;
disabled: defaultTextColor = Color { 85, 85, 85 };
*/
import "Window"
import "ReplaceDialog"
import "FindDialog"
{
"Version" : 0.2,
"ModuleName" : "econTest1",
"Options" : {
"Warnings" : "All",
"TargetType" : "Executable",
"TargetFileName" : "econTest1",
"Libraries" : [
"ecere"
],
{
name = "Blueish",
selectionColor = 0x00FFFFE0,
selectionText = 0x001E2832,
viewsBackground = 0x001E2832,
viewsText = 0x00D3D3D3,
outputBackground = 0x00000000,
outputText = 0x0000FF00,
projectViewBackground = 0x001E2832,
projectViewText = 0x00D3D3D3,
#version 100
#define NUM_LIGHTS 8
#define MODELVIEW 1
#define PER_VERTEX_COLOR 0
#define LIGHTING_ON 1
#define NON_LOCAL_VIEWER 0
#define MAT_TWOSIDED 0
#define MAT_SPECULAR 1
#define MAT_SEPARATE_SPECULAR 0