Well, you *could* have blocks as following....Quote:>Hi,
>I was wondering if there is any method os removing the window manager
>decorations from around the window, ie menus, resize icon etc.
>I know what to do if programming directly in X-motif, but what I want to do
is
>use the platform independance of GLUT to generate graphics.
>Has anyone any ideas ?
>Is there a possibility of hooks for this being added to the GLUT libraries
?
#ifdef WIN32
<do some win32 stuff to kill widgets>
#else
<do some X Windows stuff to kill widgets>
#endif
and have something like -DWIN32 (for Windows platforms) on the compiler
command line...