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,19 @@
module minwin.logging;
public import std.stream;
//version=StdOutLog;
version (LOG) {
Stream log;
version (StdOutLog) {
static this() {
log = stdout;
}
} else {
static this() {
log = new BufferedFile("log.txt",FileMode.OutNew);
}
}
}