Very basic stuff working on linux 32-bit with dmd and phobos2.

This commit is contained in:
Steve King 2010-08-10 21:55:30 -07:00
commit 67f0225e42
152 changed files with 113 additions and 0 deletions

View file

@ -0,0 +1,17 @@
/* MinWin unittest
*
* Written by Ben Hinkle and released to the public domain, as
* explained at http://creativecommons.org/licenses/publicdomain
* Report comments and bugs at dsource: http://www.dsource.org/projects/minwin
*/
import minwin.all;
extern (C)
int MinWinMain(Application* app) {
Point p = XY(100,100);
Group g = new Group(null);
app.rsrc("100");
return 0;
}