this call will change the key board layout to english
no problem here
the problem
when i want to change to a hex-decimal values like
0x0c09 English (Australian)
how can i make this ??
the call
make no result
also if i convert to decimal
the call has no result
what i do wrong ??
PHP Code:
DLL.CallFunction("user32.dll", "LoadKeyboardLayoutA", "\"00000401\", 1", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL)
the problem
when i want to change to a hex-decimal values like
0x0c09 English (Australian)
how can i make this ??
the call
PHP Code:
DLL.CallFunction("user32.dll", "LoadKeyboardLayoutA", "\"00000c09\", 1", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL)
also if i convert to decimal
PHP Code:
DLL.CallFunction("user32.dll", "LoadKeyboardLayoutA", "\"00003081\", 1", DLL_RETURN_TYPE_LONG, DLL_CALL_STDCALL)
what i do wrong ??
Comment