예제 #1
0
파일: lib.c 프로젝트: c10ud/CHDK
void JogDial_CCW(void) {
    _PostLogicalEventToUI(0x8ae, 1);    //RotateJogDialLeft
}
예제 #2
0
파일: lib.c 프로젝트: c10ud/CHDK
void JogDial_CW(void) {
    _PostLogicalEventToUI(0x8ad, 1);    //RotateJogDialRight 
}
예제 #3
0
파일: lib.c 프로젝트: c10ud/CHDK
void JogDial_CW(void)
{
    _PostLogicalEventToUI(0x872, 1);  // RotateJogDialRight (in table @ ffc1b298, fw 1.00a)
}
예제 #4
0
파일: lib.c 프로젝트: c10ud/CHDK
void JogDial_CCW(void)
{
    _PostLogicalEventToUI(0x873, 1);  // RotateJogDialLeft (in table @ ffc1b2a4, fw 1.00a)
}
예제 #5
0
파일: wrappers.c 프로젝트: emlyn/chdk
void PostLogicalEventToUI(unsigned id, unsigned x) {
	_PostLogicalEventToUI(id,x);
}