mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-01 19:26:16 +00:00
GCC doesn't need CDECL on variables
svn path=/trunk/; revision=35790
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user