home *** CD-ROM | disk | FTP | other *** search
/ Computer Panoráma / computer_panorama_1997-12-hibas.iso / SHARE / GRAPH / PTC051.ZIP / SRC / NATIVE.H < prev    next >
C/C++ Source or Header  |  1997-09-20  |  649b  |  31 lines

  1. ///////////////////////////////
  2. // native access definitions //
  3. ///////////////////////////////
  4.  
  5. #ifndef __NATIVE_H
  6. #define __NATIVE_H
  7.  
  8.  
  9.  
  10.  
  11.  
  12. // no native access
  13. const NATIVE_UNAVAILABLE                   = 0;
  14.  
  15. // native surface types
  16. const NATIVE_WIN32_HDC                     = 1; // microsoft win32 device context (HDC)
  17. const NATIVE_WIN32_LPDIRECTDRAWSURFACE     = 2; // microsoft win32 directdraw surface (LPDIRECTDRAWSURFACE)
  18.  
  19. // native interface types
  20. const NATIVE_WIN32_LPDIRECTDRAW            = 3; // microsoft win32 directdraw object (LPDIRECTDRAW)
  21. const NATIVE_X11_Window                    = 4; // X11 Window structure
  22.  
  23.  
  24.  
  25.  
  26.  
  27.  
  28.  
  29.  
  30. #endif
  31.