-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kernel.GetSystemPreferredUILanguages
- Loading branch information
1 parent
5b307f6
commit 1988a30
Showing
3 changed files
with
61 additions
and
11 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
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,8 @@ | ||
package w32 | ||
|
||
// https://github.com/tpn/winsdk-10/blob/9b69fd26ac0c7d0b83d378dba01080e93349c2ed/Include/10.0.10240.0/um/WinNls.h#L898-L899 | ||
const ( | ||
MUI_LANGUAGE_ID = 0x4 // Use traditional language ID convention | ||
MUI_LANGUAGE_NAME = 0x8 // Use ISO language (culture) name convention | ||
MUI_MACHINE_LANGUAGE_SETTINGS = 0x400 // 取決於系統設定 | ||
) |