better conditional compilation

This commit is contained in:
Vadim Lopatin 2014-12-05 14:56:00 +03:00
parent 7c70116c91
commit 483e10c980
3 changed files with 995 additions and 1001 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
module dlangui.platforms.windows.win32drawbuf;
version (Windows) {
version(Windows):
import win32.windows;
import dlangui.core.logger;
@ -127,5 +127,3 @@ class Win32ColorDrawBuf : ColorDrawBufBase {
BitBlt(dc, x, y, _dx, _dy, _drawdc, 0, 0, SRCCOPY);
}
}
}

View File

@ -1,6 +1,6 @@
module dlangui.platforms.windows.win32fonts;
version (Windows) {
version(Windows):
import win32.windows;
import dlangui.graphics.fonts;
@ -426,5 +426,3 @@ extern(Windows) {
return 1;
}
}
}