SdlImage.cs 366 B

123456789101112131415161718
  1. // $Id$
  2. using System;
  3. using System.Runtime.InteropServices;
  4. using Sdl;
  5. using System.Security;
  6. namespace Sdl.Image
  7. {
  8. public static class IMG
  9. {
  10. private const string SDLIMAGE_DLL = "sdl_image.dll";
  11. [DllImport(SDLIMAGE_DLL, EntryPoint = "IMG_Load"), SuppressUnmanagedCodeSecurityAttribute]
  12. public static extern IntPtr /*Surface*/ Load(string filename);
  13. }
  14. }