fix crash under win32 - in DCD log messages: close #89

This commit is contained in:
Vadim Lopatin 2016-01-11 10:14:15 +03:00
parent 2a48f235b0
commit 3645c29fb6
2 changed files with 15 additions and 2 deletions

View File

@ -12,7 +12,7 @@
"stringImportPaths": ["views", "views/res", "views/res/i18n", "views/res/mdpi", "views/res/hdpi"],
"dependencies": {
"dlangui": "~>0.7.33",
"dlangui": "~>0.7.34",
"dcd": "~>0.7.5-3"
},

View File

@ -6,13 +6,26 @@ import std.conv;
import dlangide.ui.frame;
import dlangide.ui.commands;
import dlangide.workspace.workspace;
import std.experimental.logger;
mixin APP_ENTRY_POINT;
/// entry point for dlangui based application
extern (C) int UIAppMain(string[] args) {
version(Windows) {
debug {
sharedLog = new FileLogger("dcd.log");
} else {
sharedLog = new NullLogger();
}
} else {
debug {
//sharedLog = new FileLogger("dcd.log");
} else {
sharedLog = new NullLogger();
}
}
// embed non-standard resources listed in views/resources.list into executable
embeddedResourceList.addResources(embedResourcesFromList!("resources.list")());