Re-add minwin gtk example

This commit is contained in:
flithm 2007-08-28 16:16:58 +00:00
commit 5967eacdf0
52 changed files with 35078 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;
}