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