home *** CD-ROM | disk | FTP | other *** search
- /*
- * LWSDK Header File
- * Copyright 1995 NewTek, Inc.
- */
- #ifndef TOOLS_HDISP_H
- #define TOOLS_HDISP_H
-
- #ifdef _XGL
- #include <X11/Xlib.h>
- #endif
- #ifdef _WIN32
- #include <windows.h>
- #endif
-
- typedef struct st_HostDisplayInfo {
- #ifdef _AMIGA
- struct Screen *screen;
- struct Window *window;
- #endif
-
- #ifdef _XGL
- Display *xsys;
- Window window;
- #endif
-
- #ifdef _WIN32
- HANDLE instance;
- HWND window;
- #endif
- } HostDisplayInfo;
-
- #endif
-