예제 #1
0
int TouchScreenInit(void)
{
	int iError = 0;
	
	iError = TSInputDeviceInit();
	iError |= RegisterInputOpr(&g_tTSInputOpr);
	
	return iError;
}
예제 #2
0
int BoardButtonInit(void)
{
	int iError = 0;
	
	iError = ButtonInputDeviceInit();
	iError |= RegisterInputOpr(&g_tButtonInputOpr);

	return iError;
}
예제 #3
0
int TouchScreenInit(void)
{
	return RegisterInputOpr(&g_tTouchScreenOpr);
}
예제 #4
0
파일: stdin.c 프로젝트: fei943241357/EBook
int StdinInit(void)
{
	return RegisterInputOpr(&g_tStdinOpr);
}