7 lines
142 B
Python
7 lines
142 B
Python
from ctypes import c_char_p
|
|
from .dll import _bind
|
|
|
|
__all__ = ["SDL_GetPlatform"]
|
|
|
|
SDL_GetPlatform = _bind("SDL_GetPlatform", None, c_char_p)
|