Windows 8 SDK
/* * Windows APIs can be placed in a partition represented by one of the below bits. The * WINAPI_FAMILY value determines which partitions are available to the client code. */ #define WINAPI_PARTITION_DESKTOP 0x00000001 #define WINAPI_PARTITION_APP 0x00000002 /* * A family may be defined as the union of multiple families. WINAPI_FAMILY should be set * to one of these values. */ #define WINAPI_FAMILY_APP WINAPI_PARTITION_APP #define WINAPI_FAMILY_DESKTOP_APP (WINAPI_PARTITION_DESKTOP | WINAPI_PARTITION_APP)
一方、こっちはWindows Phone 8 SDK
/* * WINAPI_FAMILY should be set to be one of these. */ #define WINAPI_FAMILY_APP 1 #define WINAPI_FAMILY_DESKTOP_APP 2 #define WINAPI_FAMILY_PHONE_APP 3
やっつけにも程があるでしょ、これ。なんでヘッダの内容別にしちゃうかなぁ。SDKのヘッダくらい同期してくださいってマジ思う。
0 件のコメント:
コメントを投稿