Changeset 21515 for trunk/include
- Timestamp:
- Dec 7, 2010, 1:41:12 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/guiddef.h
r21493 r21515 39 39 40 40 #ifdef INITGUID 41 #ifdef __EMX__ 42 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ 43 extern const GUID name asm(#name); /* suppress underscore */ \ 44 const GUID name = \ 45 { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } 46 #else 41 47 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ 42 48 extern const GUID name = \ 43 { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } 49 { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } 50 #endif 51 #else /* INITGUID */ 52 #ifdef __EMX__ 53 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ 54 extern const GUID name asm(#name) /* suppress underscore */ 44 55 #else 45 56 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ 46 57 extern const GUID name 58 #endif 47 59 #endif 48 60
Note:
See TracChangeset
for help on using the changeset viewer.