Merge branch '1.3-rel'
authorKevin Kane <kkane@microsoft.com>
Thu, 13 Apr 2017 18:31:16 +0000 (11:31 -0700)
committerKevin Kane <kkane@microsoft.com>
Thu, 13 Apr 2017 18:33:20 +0000 (11:33 -0700)
Change-Id: Ib501451be069310d21bae65b1b3d1993a5b3cc1f
Signed-off-by: Kevin Kane <kkane@microsoft.com>
1  2 
resource/c_common/platform_features.h

  #endif
  
  /**
-  * Mark a parameter as unused. Used to prevent unused variable compiler warnings.
-  */
- #  define OC_UNUSED(x) (void)(x)
- /**
 + * Calling convention.
 + */
 +#ifdef _WIN32
 +/*
 + * Set to __stdcall for Windows, consistent with WIN32 APIs.
 + */
 +#  define OC_CALL   __stdcall
 +#else
 +#  define OC_CALL
 +#endif
 +
++/**
+  * Mark a parameter as unused. Used to prevent unused variable compiler warnings.
+  */
+ #define OC_UNUSED(x) (void)(x)
  #endif