| 13 | } |
| 14 | |
| 15 | int LRConfigFileMap::ReadConfigFileMap(LRProfile* profile) |
| 16 | { |
| 17 | GetEnvironmentVariableW(L"LRCodePage", (LPWSTR)&profile->CodePage, sizeof(UINT)); |
| 18 | GetEnvironmentVariableW(L"LRLCID", (LPWSTR)&profile->LCID, sizeof(UINT)); |
| 19 | GetEnvironmentVariableW(L"LRBIAS", (LPWSTR)&profile->Bias, sizeof(long)); |
| 20 | GetEnvironmentVariableW(L"LRHookIME", (LPWSTR)&profile->HookIME,sizeof(int)); |
| 21 | GetEnvironmentVariableW(L"LRHookLCID", (LPWSTR)&profile->HookLCID, sizeof(int)); |
| 22 | return 0; |
| 23 | } |