mirror of https://github.com/buggins/dlangui.git
fixing dependencies
This commit is contained in:
parent
a012460c5c
commit
2378f4c136
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue