Home
last modified time | relevance | path

Searched refs:country (Results 1 – 5 of 5) sorted by relevance

/RvlSDK-3.2/build/demos/kprdemo/src/
Dkprdemo.c238 KBDCountryCode country; in kbdAppKeyEvent() local
343 KBD_CALL (KBDGetCountry (kke->channel, &country)); in kbdAppKeyEvent()
345 if (country == KBD_CC_GREEK) { in kbdAppKeyEvent()
392 static u32 country[KBD_MAX_CHANNELS] = { 0, 0, 0, 0}; // index into codeList above in main() local
457 country[cch] = (country[cch]+1) % MAX_CODE; in main()
459 country[cch] = (country[cch]+MAX_CODE-1) % MAX_CODE; in main()
461 KBD_CALL (KBDSetCountry (cch, countryList[country[cch]])); in main()
463 …OSReport ("Country switched to %s for channel %d.\n", countryName[countryList[country[cch]]], cch); in main()
465 if (countryList[country[cch]] == KBD_CC_JAPANESE) { in main()
477 } else if (countryList[country[cch]] != KBD_CC_UNITED_STATES && in main()
[all …]
/RvlSDK-3.2/build/demos/kbddemo/src/
DkbdUTF8.c239 KBDCountryCode country; in kbdAppKeyEvent() local
280 KBD_CALL (KBDGetCountry (kke->channel, &country)); in kbdAppKeyEvent()
303 OSReport (" (%s) utf32 unicode: 0x%08x", countryName[country], kke->unicode); in kbdAppKeyEvent()
344 if (country == KBD_CC_GREEK) { in kbdAppKeyEvent()
390 static u32 country[KBD_MAX_CHANNELS] = { 0, 0, 0, 0 }; // index into codeList above variable
444 country[cch] = (country[cch]+1) % MAX_CODE; in main()
446 country[cch] = (country[cch]+MAX_CODE-1) % MAX_CODE; in main()
448 KBD_CALL (KBDSetCountry (cch, countryList[country[cch]])); in main()
450 …OSReport ("Country switched to %s for channel %d.\n", countryName[countryList[country[cch]]], cch); in main()
DkbdUTF8Sync.c238 KBDCountryCode country; in kbdAppKeyEvent() local
279 KBD_CALL (KBDGetCountry (kke->channel, &country)); in kbdAppKeyEvent()
302 OSReport (" (%s) utf32 unicode: 0x%08x", countryName[country], kke->unicode); in kbdAppKeyEvent()
343 if (country == KBD_CC_GREEK) { in kbdAppKeyEvent()
395 static u32 country[KBD_MAX_CHANNELS] = { 0, 0, 0, 0 }; // index into codeList above in main() local
444 country[cch] = (country[cch]+1) % MAX_CODE; in main()
446 country[cch] = (country[cch]+MAX_CODE-1) % MAX_CODE; in main()
448 KBD_CALL (KBDSetCountry (cch, countryList[country[cch]])); in main()
450 …OSReport ("Country switched to %s for channel %d.\n", countryName[countryList[country[cch]]], cch); in main()
/RvlSDK-3.2/X86/bin/
Dsetcountrycode.bat15 echo Sets the country code on disc.
39 echo Successfully done. Set the country code for the disc to China.
49 echo Successfully done. Set the country code for the disc to Korea.
59 echo Successfully done. Set the country code for the disc to Europe.
69 echo Successfully done. Set the country code for the disc to US.
79 echo Successfully done. Set the country code for the disc to Japan.
83 echo Failed to set the country code on disc.
/RvlSDK-3.2/include/revolution/
Dkbd.h267 KBDEc KBDSetCountry (KBDChannel ch, KBDCountryCode country); // set country
268 KBDEc KBDGetCountry (KBDChannel ch, KBDCountryCode *country); // get country
279 KBDUnicode KBDTranslateHidCode(KBDHIDCode hid, KBDModState modState, KBDCountryCode country);