mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 01:15:09 +00:00
GCC doesn't need CDECL on variables
svn path=/trunk/; revision=35790
This commit is contained in:
parent
7641cc07cc
commit
c4ec9d697b
1 changed files with 5 additions and 2 deletions
|
@ -73,8 +73,11 @@ typedef PVOID PKSWORKER;
|
|||
|
||||
#ifndef _NTRTL_
|
||||
#ifndef DEFINE_GUIDEX
|
||||
/* CDECL is used here in MS DDK but does this really work?? */
|
||||
#define DEFINE_GUIDEX(name) EXTERN_C const CDECL GUID name
|
||||
#ifdef _MSC_VER
|
||||
#define DEFINE_GUIDEX(name) EXTERN_C const CDECL GUID name
|
||||
#else
|
||||
#define DEFINE_GUIDEX(name) EXTERN_C const GUID name
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef STATICGUIDOF
|
||||
|
|
Loading…
Reference in a new issue