Mercurial > touhou
comparison pytouhou/ui/window.pxd @ 491:2276229282fd
Fix gcc’s warnings with -Wall -Wextra.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Fri, 04 Oct 2013 14:32:28 +0200 |
parents | 36bc577b2392 |
children | c622eaf64428 |
comparison
equal
deleted
inserted
replaced
490:1b532e7dd521 | 491:2276229282fd |
---|---|
1 from pytouhou.lib cimport sdl | 1 from pytouhou.lib cimport sdl |
2 | 2 |
3 | 3 |
4 cdef class Clock: | 4 cdef class Clock: |
5 cdef long _target_fps, _ref_tick, _ref_frame, _fps_tick, _fps_frame | 5 cdef unsigned long _ref_tick |
6 cdef long _target_fps, _ref_frame, _fps_tick, _fps_frame | |
6 cdef double _rate | 7 cdef double _rate |
7 | 8 |
8 cdef void set_target_fps(self, long fps) nogil | 9 cdef void set_target_fps(self, long fps) nogil |
9 cdef double get_fps(self) nogil | 10 cdef double get_fps(self) nogil |
10 cdef void tick(self) nogil except * | 11 cdef void tick(self) nogil except * |