Difference between revisions of "SetSetupSetting"
From WikiPrizm
Jump to navigationJump to search (Created page with "{{syscall | name = SetSetupSetting | header = fxcg/system.h | index = 0x0032 | signature = void SetSetupSetting(unsigned int SystemParameterNo, unsigned char SystemParameterVa...") |
|||
Line 4: | Line 4: | ||
| index = 0x0032 | | index = 0x0032 | ||
| signature = void SetSetupSetting(unsigned int SystemParameterNo, unsigned char SystemParameterValue) | | signature = void SetSetupSetting(unsigned int SystemParameterNo, unsigned char SystemParameterValue) | ||
− | | synopsis = Sets a [[ | + | | synopsis = Sets a [[Setup]] setting to the given value. |
| parameters = * '''SystemParameterNo''' - index of the setting to change. | | parameters = * '''SystemParameterNo''' - index of the setting to change. | ||
* '''SystemParameterValue''' - new value of the setting. | * '''SystemParameterValue''' - new value of the setting. |
Revision as of 17:06, 1 August 2014
Synopsis
Header: fxcg/system.h
Syscall index: 0x0032
Function signature: void SetSetupSetting(unsigned int SystemParameterNo, unsigned char SystemParameterValue)
Sets a Setup setting to the given value.
Parameters
- SystemParameterNo - index of the setting to change.
- SystemParameterValue - new value of the setting.
Example
The following example sets the keyboard input method to lowercase alpha-lock:
SetSetupSetting((unsigned int)0x14, 0x88);