Mercurial > touhou
comparison pytouhou/lib/sdl.pxd @ 590:e15672733c93
Switch to Python 3.x instead of 2.7.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Tue, 30 Sep 2014 17:14:24 +0200 |
parents | 0768122da817 |
children | 19d930f9e3f0 |
comparison
equal
deleted
inserted
replaced
589:0768122da817 | 590:e15672733c93 |
---|---|
123 cdef Surface create_rgb_surface(int width, int height, int depth, Uint32 rmask=*, Uint32 gmask=*, Uint32 bmask=*, Uint32 amask=*) | 123 cdef Surface create_rgb_surface(int width, int height, int depth, Uint32 rmask=*, Uint32 gmask=*, Uint32 bmask=*, Uint32 amask=*) |
124 cdef void mix_open_audio(int frequency, Uint16 format_, int channels, int chunksize) except * | 124 cdef void mix_open_audio(int frequency, Uint16 format_, int channels, int chunksize) except * |
125 cdef void mix_allocate_channels(int numchans) except * | 125 cdef void mix_allocate_channels(int numchans) except * |
126 cdef int mix_volume(int channel, float volume) nogil | 126 cdef int mix_volume(int channel, float volume) nogil |
127 cdef int mix_volume_music(float volume) nogil | 127 cdef int mix_volume_music(float volume) nogil |
128 cdef Music load_music(const char *filename) | 128 cdef Music load_music(str filename) |
129 cdef Chunk load_chunk(file_) | 129 cdef Chunk load_chunk(file_) |
130 cdef Uint32 get_ticks() nogil | 130 cdef Uint32 get_ticks() nogil |
131 cdef void delay(Uint32 ms) nogil | 131 cdef void delay(Uint32 ms) nogil |
132 cpdef int show_simple_message_box(unicode message) | 132 cpdef int show_simple_message_box(unicode message) |