示例#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);
}