00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include "ISecondaryScreen.h"
00020 #include "IEventQueue.h"
00021
00022 CEvent::Type ISecondaryScreen::s_gameTimingRespEvent = CEvent::kUnknown;
00023 CEvent::Type ISecondaryScreen::s_gameFeedbackEvent = CEvent::kUnknown;
00024
00025 CEvent::Type
00026 ISecondaryScreen::getGameDeviceTimingRespEvent()
00027 {
00028 return EVENTQUEUE->registerTypeOnce(s_gameTimingRespEvent,
00029 "ISecondaryScreen::getGameDeviceTimingRespEvent");
00030 }
00031
00032 CEvent::Type
00033 ISecondaryScreen::getGameDeviceFeedbackEvent()
00034 {
00035 return EVENTQUEUE->registerTypeOnce(s_gameFeedbackEvent,
00036 "ISecondaryScreen::getGameDeviceFeedbackEvent");
00037 }