blob: c2d5becd8f3b27d00335e9f5ea5adf1e17921dc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* Windows API header module
*
* Translated from MinGW API for MS-Windows 3.10
*
* Authors: Stewart Gordon
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
* Source: $(DRUNTIMESRC core/sys/windows/_idispids.d)
*/
module core.sys.windows.idispids;
version (Windows):
enum : int {
DISPID_AMBIENT_OFFLINEIFNOTCONNECTED = -5501,
DISPID_AMBIENT_SILENT = -5502
}
|