mirror of https://github.com/buggins/dlangui.git
86 lines
2.8 KiB
D
86 lines
2.8 KiB
D
/***********************************************************************\
|
|
* w32api.d *
|
|
* *
|
|
* Windows API header module *
|
|
* *
|
|
* Translated from MinGW API for MS-Windows 4.0 *
|
|
* by Stewart Gordon *
|
|
* *
|
|
* Placed into public domain *
|
|
\***********************************************************************/
|
|
module win32.w32api;
|
|
version(Windows):
|
|
version = Unicode;
|
|
|
|
enum __W32API_VERSION = 3.17;
|
|
enum __W32API_MAJOR_VERSION = 3;
|
|
enum __W32API_MINOR_VERSION = 17;
|
|
|
|
/* These version identifiers are used to specify the minimum version of Windows that an
|
|
* application will support.
|
|
*
|
|
* Previously the minimum Windows 9x and Windows NT versions could be specified. However, since
|
|
* Windows 9x is no longer supported, either by Microsoft or by DMD, this distinction has been
|
|
* removed in order to simplify the bindings.
|
|
*/
|
|
version (Windows7) {
|
|
enum uint _WIN32_WINNT = 0x601;
|
|
} else version (WindowsVista) {
|
|
enum uint _WIN32_WINNT = 0x600;
|
|
} else version (Windows2003) {
|
|
enum uint _WIN32_WINNT = 0x502;
|
|
} else version (WindowsXP) {
|
|
enum uint _WIN32_WINNT = 0x501;
|
|
} else version (Windows2000) {
|
|
enum uint _WIN32_WINNT = 0x500;
|
|
} else {
|
|
enum uint _WIN32_WINNT = 0x501;
|
|
}
|
|
|
|
version (IE8) {
|
|
enum uint _WIN32_IE = 0x800;
|
|
} version (IE7) {
|
|
enum uint _WIN32_IE = 0x700;
|
|
} else version (IE602) {
|
|
enum uint _WIN32_IE = 0x603;
|
|
} else version (IE601) {
|
|
enum uint _WIN32_IE = 0x601;
|
|
} else version (IE6) {
|
|
enum uint _WIN32_IE = 0x600;
|
|
} else version (IE56) {
|
|
enum uint _WIN32_IE = 0x560;
|
|
} else version (IE501) {
|
|
enum uint _WIN32_IE = 0x501;
|
|
} else version (IE5) {
|
|
enum uint _WIN32_IE = 0x500;
|
|
} else version (IE401) {
|
|
enum uint _WIN32_IE = 0x401;
|
|
} else version (IE4) {
|
|
enum uint _WIN32_IE = 0x400;
|
|
} else version (IE3) {
|
|
enum uint _WIN32_IE = 0x300;
|
|
} else static if (_WIN32_WINNT >= 0x410) {
|
|
enum uint _WIN32_IE = 0x400;
|
|
} else {
|
|
enum uint _WIN32_IE = 0;
|
|
}
|
|
|
|
debug (WindowsUnitTest) {
|
|
unittest {
|
|
printf("Windows NT version: %03x\n", _WIN32_WINNT);
|
|
printf("IE version: %03x\n", _WIN32_IE);
|
|
}
|
|
}
|
|
|
|
version (Unicode) {
|
|
enum bool _WIN32_UNICODE = true;
|
|
package template DECLARE_AW(string name) {
|
|
mixin("alias " ~ name ~ "W " ~ name ~ ";");
|
|
}
|
|
} else {
|
|
enum bool _WIN32_UNICODE = false;
|
|
package template DECLARE_AW(string name) {
|
|
mixin("alias " ~ name ~ "A " ~ name ~ ";");
|
|
}
|
|
}
|