From 2aaeeb105e1fdb31fde859a5c6dc6ea103234067 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20M=C3=BCller?= Date: Thu, 1 Jun 2017 17:46:11 +0300 Subject: [PATCH] include: Fix definition of EXTERN_GUID. Signed-off-by: Nikolay Sivov Signed-off-by: Alexandre Julliard --- include/rpcndr.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/include/rpcndr.h b/include/rpcndr.h index f7955667038..9029950921b 100644 --- a/include/rpcndr.h +++ b/include/rpcndr.h @@ -45,9 +45,7 @@ extern "C" { { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } #else #define EXTERN_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \ - const GUID DECLSPEC_SELECTANY name DECLSPEC_HIDDEN; \ - const GUID DECLSPEC_SELECTANY name = \ - { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } } + EXTERN_C const GUID name #endif #endif