コード例 #1
0
ファイル: darwin_hid.py プロジェクト: einarf/pyglet
 def unschedule_from_run_loop(self):
     iokit.IOHIDManagerUnscheduleFromRunLoop(
         self.managerRef, c_void_p(cf.CFRunLoopGetCurrent()),
         kCFRunLoopDefaultMode)
コード例 #2
0
ファイル: darwin_hid.py プロジェクト: einarf/pyglet
 def unschedule_from_run_loop(self):
     iokit.IOHIDDeviceUnscheduleFromRunLoop(
         self.deviceRef, c_void_p(cf.CFRunLoopGetCurrent()),
         kCFRunLoopDefaultMode)
コード例 #3
0
ファイル: darwin_hid.py プロジェクト: einarf/pyglet
 def schedule_with_run_loop(self):
     iokit.IOHIDManagerScheduleWithRunLoop(
         self.managerRef, c_void_p(cf.CFRunLoopGetCurrent()),
         kCFRunLoopDefaultMode)
コード例 #4
0
ファイル: darwin_hid.py プロジェクト: einarf/pyglet
 def schedule_with_run_loop(self):
     iokit.IOHIDDeviceScheduleWithRunLoop(
         self.deviceRef, c_void_p(cf.CFRunLoopGetCurrent()),
         kCFRunLoopDefaultMode)