blob: b166c39cabcbffc623dd9e8492961dd7f7d4415a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/**
* 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/_isguids.d)
*/
module core.sys.windows.isguids;
version (Windows):
import core.sys.windows.basetyps;
extern (C) extern const GUID
CLSID_InternetShortcut,
IID_IUniformResourceLocator;
|