-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0e39c27
commit b26b9d8
Showing
5 changed files
with
432 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
#define BUILD_NUMBER 59 | ||
#define BUILD_NUMBER 60 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#define WINAPI_PARTITION_DESKTOP 0x00000001 | ||
#define WINAPI_FAMILY_DESKTOP_APP WINAPI_PARTITION_DESKTOP | ||
|
||
// WINAPI_FAMILY is usually defined by the build system based on the target platform | ||
#ifndef WINAPI_FAMILY | ||
#define WINAPI_FAMILY WINAPI_FAMILY_DESKTOP_APP | ||
#endif | ||
|
||
#define WINAPI_FAMILY_PARTITION(Partition) ((WINAPI_FAMILY & Partition) == Partition) |
Oops, something went wrong.