diff options
author | EXetoC <exetoc@gmail.com> | 2013-07-18 20:28:09 +0200 |
---|---|---|
committer | EXetoC <exetoc@gmail.com> | 2013-07-18 20:28:09 +0200 |
commit | 6e4dfc8eb51d0a60b9f466412ca497bae475a0f8 (patch) | |
tree | 685aaad09540dffc9afc9c8f97bdd77cdd5d1b0c /lib/wrappers | |
parent | f3b4240b8756ed416384335ebc2ef3b5e857ba0c (diff) | |
download | Nim-6e4dfc8eb51d0a60b9f466412ca497bae475a0f8.tar.gz |
Add missing SDL symbols.
Diffstat (limited to 'lib/wrappers')
-rw-r--r-- | lib/wrappers/sdl/sdl_image.nim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/wrappers/sdl/sdl_image.nim b/lib/wrappers/sdl/sdl_image.nim index 16e41070b..538a8a6f5 100644 --- a/lib/wrappers/sdl/sdl_image.nim +++ b/lib/wrappers/sdl/sdl_image.nim @@ -163,6 +163,15 @@ proc IMG_Linked_Version*(): Pversion{.importc: "IMG_Linked_Version", # surface afterwards by calling: # SDL_SetColorKey(image, SDL_RLEACCEL, image.format.colorkey); # + +const + IMG_INIT_JPG* = 0x00000001 + IMG_INIT_PNG* = 0x00000002 + IMG_INIT_TIF* = 0x00000004 + IMG_INIT_WEBP* = 0x00000008 + +proc IMG_Init*(flags: cint): int {.cdecl, importc: "IMG_Init".} +proc IMG_Quit*() {.cdecl, importc: "IMG_Quit".} proc IMG_LoadTyped_RW*(src: PRWops, freesrc: cint, theType: cstring): PSurface{. cdecl, importc: "IMG_LoadTyped_RW", dynlib: ImageLibName.} # Convenience functions |