Commit 236fd510 authored by Alexandre Julliard's avatar Alexandre Julliard

uuid: Mark all GUID variables as hidden.

parent d74b280e
......@@ -21,6 +21,7 @@
#include <stdarg.h>
#include "windef.h"
#define COM_NO_WINDOWS_H
#include "initguid.h"
......
......@@ -32,16 +32,18 @@ typedef struct _GUID
#ifdef INITGUID
#ifdef __cplusplus
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
EXTERN_C const GUID name DECLSPEC_HIDDEN; \
EXTERN_C const GUID name = \
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
#else
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
const GUID name DECLSPEC_HIDDEN; \
const GUID name = \
{ l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
#endif
#else
#define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
EXTERN_C const GUID name
EXTERN_C const GUID name DECLSPEC_HIDDEN
#endif
#define DEFINE_OLEGUID(name, l, w1, w2) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment