-
Notifications
You must be signed in to change notification settings - Fork 7
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
Showing
264 changed files
with
140,879 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef __CHECKSYS_H__ | ||
#define __CHECKSYS_H__ | ||
|
||
__inline void CheckSystem() | ||
{ | ||
#if defined(_WIN32_WCE) && 0 | ||
LANGID lid = GetSystemDefaultLangID(); | ||
if (PRIMARYLANGID(lid) == LANG_JAPANESE) | ||
exit(0); | ||
|
||
#endif | ||
} | ||
|
||
#endif // __CHECKSYS_H__ |
Oops, something went wrong.