PageRenderTime 33ms CodeModel.GetById 28ms RepoModel.GetById 1ms app.codeStats 0ms

/freeimage/FreeImage.ooc

http://github.com/tsion/ooc-freeimage
Unknown | 14 lines | 11 code | 3 blank | 0 comment | 0 complexity | 0779d012a9c789b99cd62838562ba817 MD5 | raw file
  1. use freeimage
  2. FreeImage: cover {
  3. /* These are only needed if you are linking FreeImage statically. */
  4. initialize: extern(FreeImage_Initialise) func
  5. deinitialize: extern(FreeImage_DeInitialise) func
  6. MajorVersion: extern(FREEIMAGE_MAJOR_VERSION) static Int
  7. MinorVersion: extern(FREEIMAGE_MINOR_VERSION) static Int
  8. ReleaseSerial: extern(FREEIMAGE_RELEASE_SERIAL) static Int
  9. version: extern(FreeImage_GetVersion) static func -> String
  10. copyrightMessage: extern(FreeImage_GetCopyrightMessage) static func -> String
  11. }