This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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++) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo { } | |
class App : Application | |
{ | |
void Main() | |
{ | |
Array<Foo> a { }; | |
Array<Foo> b { }; | |
Foo foo { }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "ecere" | |
class MyThread : Thread | |
{ | |
unsigned int Main() | |
{ | |
form1.caption = "Hello!"; | |
return 0; | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace gui::controls; | |
/* | |
selectionForeground = white; | |
disabled: defaultTextColor = Color { 85, 85, 85 }; | |
*/ | |
import "Window" | |
import "ReplaceDialog" | |
import "FindDialog" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Version" : 0.2, | |
"ModuleName" : "econTest1", | |
"Options" : { | |
"Warnings" : "All", | |
"TargetType" : "Executable", | |
"TargetFileName" : "econTest1", | |
"Libraries" : [ | |
"ecere" | |
], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
name = "Blueish", | |
selectionColor = 0x00FFFFE0, | |
selectionText = 0x001E2832, | |
viewsBackground = 0x001E2832, | |
viewsText = 0x00D3D3D3, | |
outputBackground = 0x00000000, | |
outputText = 0x0000FF00, | |
projectViewBackground = 0x001E2832, | |
projectViewText = 0x00D3D3D3, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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 |