Home
last modified time | relevance | path

Searched refs:result (Results 1 – 3 of 3) sorted by relevance

/RvlHbmSDK-4.7.3/build/demos/hbmdemo/rsodemo/include/
Drsomodule.h27 void getCursorPos( int no, Vec2 *result );
28 void setCursorPos( int no, Vec2 result );
/RvlHbmSDK-4.7.3/build/demos/hbmdemo/rsodemo/src/
Drsomodule.c544 getCursorPos(int no, Vec2 *result) in getCursorPos() argument
546 result->x = conData.wiiCon[no].pos.x; in getCursorPos()
547 result->y = conData.wiiCon[no].pos.y; in getCursorPos()
551 setCursorPos(int no, Vec2 result) in setCursorPos() argument
553 conData.wiiCon[no].pos.x = result.x; in setCursorPos()
554 conData.wiiCon[no].pos.y = result.y; in setCursorPos()
Drsodemo.cpp199 void (*getCursorPos)( int no, Vec2 *result );
200 void (*setCursorPos)( int no, Vec2 result );
576 Vec2 result; in main() local
587 getCursorPos(0,&result); in main()
650 s32 result = WPADProbe( i, &type ); in main() local
651 if ( result == WPAD_ERR_NONE && type != WPAD_DEV_NOT_FOUND ) in main()