fixing dependencies

This commit is contained in:
Vadim Lopatin 2014-12-05 17:25:18 +03:00
parent a012460c5c
commit 2378f4c136
1 changed files with 5 additions and 5 deletions

View File

@ -669,8 +669,11 @@ version (USE_OPENGL) {
} }
} }
//mixin template APP_ENTRY_POINT() { version (Windows) {
//} // to remove import
extern(Windows) int DLANGUIWinMain(void* hInstance, void* hPrevInstance,
char* lpCmdLine, int nCmdShow);
}
/// put "mixin APP_ENTRY_POINT;" to main module of your dlangui based app /// put "mixin APP_ENTRY_POINT;" to main module of your dlangui based app
mixin template APP_ENTRY_POINT() { mixin template APP_ENTRY_POINT() {
@ -687,9 +690,6 @@ mixin template APP_ENTRY_POINT() {
/// workaround for link issue when WinMain is located in library /// workaround for link issue when WinMain is located in library
version(Windows) { version(Windows) {
private import dlangui.platforms.sdl.sdlapp;
private import dlangui.platforms.windows.winapp;
extern (Windows) int WinMain(void* hInstance, void* hPrevInstance, extern (Windows) int WinMain(void* hInstance, void* hPrevInstance,
char* lpCmdLine, int nCmdShow) char* lpCmdLine, int nCmdShow)
{ {