mirror of https://github.com/buggins/dlangui.git
SDL support under Windows
This commit is contained in:
parent
c29dab5a2c
commit
7c0e3006bf
|
@ -325,6 +325,7 @@
|
||||||
<File path="src\dlangui\platforms\windows\win32fonts.d" />
|
<File path="src\dlangui\platforms\windows\win32fonts.d" />
|
||||||
<File path="src\dlangui\platforms\windows\winapp.d" />
|
<File path="src\dlangui\platforms\windows\winapp.d" />
|
||||||
</Folder>
|
</Folder>
|
||||||
|
<File path="src\dlangui\platforms\sdl\sdlapp.d" />
|
||||||
</Folder>
|
</Folder>
|
||||||
<Folder name="widgets">
|
<Folder name="widgets">
|
||||||
<File path="src\dlangui\widgets\controls.d" />
|
<File path="src\dlangui\widgets\controls.d" />
|
||||||
|
|
Binary file not shown.
|
@ -1,6 +1,7 @@
|
||||||
module dlangui.platforms.windows.win32drawbuf;
|
module dlangui.platforms.windows.win32drawbuf;
|
||||||
|
|
||||||
version (Windows) {
|
version (USE_SDL) { }
|
||||||
|
else version (Windows) {
|
||||||
|
|
||||||
import win32.windows;
|
import win32.windows;
|
||||||
import dlangui.core.logger;
|
import dlangui.core.logger;
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
module dlangui.platforms.windows.winapp;
|
module dlangui.platforms.windows.winapp;
|
||||||
|
version (USE_SDL) { }
|
||||||
version (Windows) {
|
else version (Windows) {
|
||||||
|
|
||||||
import core.runtime;
|
import core.runtime;
|
||||||
import win32.windows;
|
import win32.windows;
|
||||||
|
|
Loading…
Reference in New Issue