home *** CD-ROM | disk | FTP | other *** search
/ Video Toaster 4.2 / Video Toaster v4.2.iso / programs / documentation / lightwave / sdk / include / hdisp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-01  |  497 b   |  33 lines

  1. /*
  2.  * LWSDK Header File
  3.  * Copyright 1995  NewTek, Inc.
  4.  */
  5. #ifndef TOOLS_HDISP_H
  6. #define TOOLS_HDISP_H
  7.  
  8. #ifdef _XGL
  9.  #include <X11/Xlib.h>
  10. #endif
  11. #ifdef _WIN32
  12.  #include <windows.h>
  13. #endif
  14.  
  15. typedef struct st_HostDisplayInfo {
  16.     #ifdef _AMIGA
  17.     struct Screen   *screen;
  18.     struct Window   *window;
  19.     #endif
  20.  
  21.     #ifdef _XGL
  22.     Display         *xsys;
  23.     Window           window;
  24.     #endif
  25.  
  26.     #ifdef _WIN32
  27.     HANDLE           instance;
  28.     HWND             window;
  29.     #endif
  30. } HostDisplayInfo;
  31.  
  32. #endif
  33.