Changeset 204
- Timestamp:
- 08/30/07 20:55:05 (1 year ago)
- Files:
-
- trunk/win32/cplext.d (modified) (2 diffs)
- trunk/win32/exdispid.d (modified) (2 diffs)
- trunk/win32/idispids.d (modified) (2 diffs)
- trunk/win32/isguids.d (modified) (1 diff)
- trunk/win32/lmuseflg.d (modified) (2 diffs)
- trunk/win32/ntdll.d (modified) (2 diffs)
- trunk/win32/ole2ver.d (modified) (2 diffs)
- trunk/win32/servprov.d (modified) (1 diff)
- trunk/win32/testall.d (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/win32/cplext.d
r104 r204 4 4 * Windows API header module * 5 5 * * 6 * Translated from MinGW Windows headers*6 * Translated from MinGW API for MS-Windows 3.10 * 7 7 * by Stewart Gordon * 8 8 * * … … 11 11 module win32.cplext; 12 12 13 // FIXME: check types 14 15 const CPLPAGE_MOUSE_BUTTONS = 1; 16 const CPLPAGE_MOUSE_PTRMOTION = 2; 17 const CPLPAGE_MOUSE_WHEEL = 3; 18 const CPLPAGE_KEYBOARD_SPEED = 1; 19 const CPLPAGE_DISPLAY_BACKGROUND = 1; 13 enum : uint { 14 CPLPAGE_MOUSE_BUTTONS = 1, 15 CPLPAGE_MOUSE_PTRMOTION = 2, 16 CPLPAGE_MOUSE_WHEEL = 3, 17 CPLPAGE_KEYBOARD_SPEED = 1, 18 CPLPAGE_DISPLAY_BACKGROUND = 1 19 } trunk/win32/exdispid.d
r135 r204 4 4 * Windows API header module * 5 5 * * 6 * Translated from MinGW Windows headers*6 * Translated from MinGW API for MS-Windows 3.10 * 7 7 * by Stewart Gordon * 8 8 * * … … 11 11 module win32.exdispid; 12 12 13 // FIXME: check type 14 15 enum { 13 enum : int { 16 14 DISPID_STATUSTEXTCHANGE = 102, 17 15 DISPID_PROGRESSCHANGE = 108, trunk/win32/idispids.d
r135 r204 4 4 * Windows API header module * 5 5 * * 6 * Translated from MinGW Windows headers*6 * Translated from MinGW API for MS-Windows 3.10 * 7 7 * by Stewart Gordon * 8 8 * * … … 11 11 module win32.idispids; 12 12 13 // FIXME: check type 14 15 enum { 13 enum : int { 16 14 DISPID_AMBIENT_OFFLINEIFNOTCONNECTED = -5501, 17 15 DISPID_AMBIENT_SILENT = -5502 trunk/win32/isguids.d
r141 r204 4 4 * Windows API header module * 5 5 * * 6 * Translated from MinGW Windows headers*6 * Translated from MinGW API for MS-Windows 3.10 * 7 7 * by Stewart Gordon * 8 8 * * trunk/win32/lmuseflg.d
r155 r204 4 4 * Windows API header module * 5 5 * * 6 * Translated from MinGW Windows headers*6 * Translated from MinGW API for MS-Windows 3.10 * 7 7 * * 8 8 * Placed into public domain * … … 10 10 module win32.lmuseflg; 11 11 12 enum {12 enum : uint { 13 13 USE_NOFORCE = 0, 14 14 USE_FORCE, trunk/win32/ntdll.d
r155 r204 4 4 * Windows API header module * 5 5 * * 6 * Translated from MinGW Windows headers*6 * Translated from MinGW API for MS-Windows 3.10 * 7 7 * by Stewart Gordon * 8 8 * * … … 11 11 module win32.ntdll; 12 12 13 // FIXME: check Windows version support 13 private import win32.w32api; 14 15 // http://www.matcode.com/undocwin.h.txt 16 static assert (_WIN32_WINNT_ONLY, 17 "win32.ntdll is available only if version WindowsNTonly, WindowsXP, " 18 "Windows2003 or WindowsVista is set"); 19 14 20 15 21 enum SHUTDOWN_ACTION { trunk/win32/ole2ver.d
r155 r204 4 4 * Windows API header module * 5 5 * * 6 * Translated from MinGW Windows headers*6 * Translated from MinGW API for MS-Windows 3.10 * 7 7 * * 8 8 * Placed into public domain * … … 10 10 module win32.ole2ver; 11 11 12 // These are apparently not documented on the MSDN site 12 13 const rmm = 23; 13 14 const rup = 639; trunk/win32/servprov.d
r155 r204 4 4 * Windows API header module * 5 5 * * 6 * Translated from MinGW Windows headers*6 * Translated from MinGW API for MS-Windows 3.10 * 7 7 * * 8 8 * Placed into public domain * trunk/win32/testall.d
r201 r204 61 61 62 62 import win32.ntdef; 63 import win32.ntdll;64 63 import win32.ntldap; 65 64 import win32.ntsecapi; … … 91 90 import win32.reason; 92 91 import win32.secext; 92 import win32.ntdll; 93 93 } else version (WindowsNTonly) { 94 94 version (Windows2000) { … … 96 96 import win32.aclui; 97 97 } 98 import win32.ntdll; 98 99 }
