blob: d5655d262fa74b6fa2241003cec96124ad74261a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef _ISGUID_H
#define _ISGUID_H
#if __GNUC__ >=3
#pragma GCC system_header
#endif
#ifdef __cplusplus
extern "C" {
#endif
extern const GUID CLSID_InternetShortcut;
extern const GUID IID_IUniformResourceLocator;
#ifdef __cplusplus
}
#endif
#endif
|