mirror of https://github.com/buggins/dlangui.git
fixing dependencies
This commit is contained in:
parent
ca3df5d375
commit
a012460c5c
|
@ -669,6 +669,8 @@ version (USE_OPENGL) {
|
|||
}
|
||||
}
|
||||
|
||||
//mixin template APP_ENTRY_POINT() {
|
||||
//}
|
||||
|
||||
/// put "mixin APP_ENTRY_POINT;" to main module of your dlangui based app
|
||||
mixin template APP_ENTRY_POINT() {
|
||||
|
@ -685,13 +687,11 @@ mixin template APP_ENTRY_POINT() {
|
|||
|
||||
/// workaround for link issue when WinMain is located in library
|
||||
version(Windows) {
|
||||
private import win32.windows;
|
||||
private import dlangui.platforms.sdl.sdlapp;
|
||||
private import dlangui.platforms.windows.winapp;
|
||||
|
||||
extern (Windows)
|
||||
int WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
||||
LPSTR lpCmdLine, int nCmdShow)
|
||||
extern (Windows) int WinMain(void* hInstance, void* hPrevInstance,
|
||||
char* lpCmdLine, int nCmdShow)
|
||||
{
|
||||
return DLANGUIWinMain(hInstance, hPrevInstance,
|
||||
lpCmdLine, nCmdShow);
|
||||
|
|
|
@ -739,8 +739,8 @@ class Win32Platform : Platform {
|
|||
}
|
||||
|
||||
extern(Windows)
|
||||
int DLANGUIWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
|
||||
LPSTR lpCmdLine, int nCmdShow) {
|
||||
int DLANGUIWinMain(void* hInstance, void* hPrevInstance,
|
||||
char* lpCmdLine, int nCmdShow) {
|
||||
int result;
|
||||
|
||||
try
|
||||
|
@ -787,7 +787,7 @@ string[] splitCmdLine(string line) {
|
|||
|
||||
private __gshared Win32Platform w32platform;
|
||||
|
||||
int myWinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int iCmdShow)
|
||||
int myWinMain(void* hInstance, void* hPrevInstance, char* lpCmdLine, int iCmdShow)
|
||||
{
|
||||
Log.setFileLogger(std.stdio.File("ui.log", "w"));
|
||||
debug {
|
||||
|
|
Loading…
Reference in New Issue