statbox.obj,\
stattext.obj,\
textctrl.obj,\
+ toplevel.obj,\
timer.obj,\
toolbar.obj,\
utils.obj,\
statbox.cpp,\
stattext.cpp,\
textctrl.cpp,\
+ toplevel.cpp,\
timer.cpp,\
toolbar.cpp,\
utils.cpp,\
statbox.obj : statbox.cpp
stattext.obj : stattext.cpp
textctrl.obj : textctrl.cpp
+toplevel.obj : toplevel.cpp
timer.obj : timer.cpp
toolbar.obj : toolbar.cpp
utils.obj : utils.cpp
// Is the WM ICCCM supporting?
XGetWindowProperty(display, rootWnd,
+#ifdef __VMS
+ _NET_SUPPORTING_WM_CHECK, 0, LONG_MAX,
+#else
_NET_SUPPORTING_WM_CHECK, 0, UINT_MAX,
+#endif
False, XA_WINDOW, &type, &format, &nwins,
&after, (unsigned char **)&wins);
if ( type != XA_WINDOW || nwins <= 0 || wins[0] == None )
// Query for supported features:
XGetWindowProperty(display, rootWnd,
- _NET_SUPPORTED, 0, UINT_MAX,
+#ifdef __VMS
+ _NET_SUPPORTED, 0, LONG_MAX,
+#else
+ _NET_SUPPORTED, 0, UINT_MAX,
+#endif
False, XA_ATOM, &type, &format, &natoms,
&after, (unsigned char **)&atoms);
if ( type != XA_ATOM || atoms == NULL )