Esempio n. 1
0
File: lib.c Progetto: c10ud/CHDK
void JogDial_CCW(void) {
    _PostLogicalEventToUI(0x8ae, 1);    //RotateJogDialLeft
}
Esempio n. 2
0
File: lib.c Progetto: c10ud/CHDK
void JogDial_CW(void) {
    _PostLogicalEventToUI(0x8ad, 1);    //RotateJogDialRight 
}
Esempio n. 3
0
File: lib.c Progetto: c10ud/CHDK
void JogDial_CW(void)
{
    _PostLogicalEventToUI(0x872, 1);  // RotateJogDialRight (in table @ ffc1b298, fw 1.00a)
}
Esempio n. 4
0
File: lib.c Progetto: c10ud/CHDK
void JogDial_CCW(void)
{
    _PostLogicalEventToUI(0x873, 1);  // RotateJogDialLeft (in table @ ffc1b2a4, fw 1.00a)
}
Esempio n. 5
0
void PostLogicalEventToUI(unsigned id, unsigned x) {
	_PostLogicalEventToUI(id,x);
}