File: misc.py

package info (click to toggle)
pysdl2 0.9.9%2Bdfsg1-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 3,276 kB
  • sloc: python: 18,592; makefile: 148; sh: 40
file content (10 lines) | stat: -rw-r--r-- 179 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
from ctypes import c_char_p, c_int
from .dll import _bind

__all__ = [
    # Functions
    "SDL_OpenURL"
]


SDL_OpenURL = _bind("SDL_OpenURL", [c_char_p], c_int, added='2.0.14')