Numerous bug fixes to all platforms

Works both installed and not installed
This commit is contained in:
flithm 2007-08-28 01:54:45 +00:00
commit a81ea73566
68 changed files with 384 additions and 35286 deletions

View file

@ -1,19 +0,0 @@
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);
}
}
}