Merge pull request #401 from tom-tan/fix-unittest-windows

Fix failure in unittest on Windows systems
This commit is contained in:
Vadim Lopatin 2017-08-11 17:30:54 +03:00 committed by GitHub
commit 5b96e81d1e
1 changed files with 13 additions and 10 deletions

View File

@ -1896,6 +1896,8 @@ mixin template APP_ENTRY_POINT() {
} else {
/// workaround for link issue when WinMain is located in library
version(Windows) {
version (unittest) {
} else {
extern (Windows) int WinMain(void* hInstance, void* hPrevInstance,
char* lpCmdLine, int nCmdShow)
{
@ -1908,6 +1910,7 @@ mixin template APP_ENTRY_POINT() {
return 1;
}
}
}
} else {
version (Android) {
} else {