From: <kr_...@us...> - 2003-03-03 00:21:54
|
Update of /cvsroot/htoolkit/port/src/include In directory sc8-pr-cvs1:/tmp/cvs-serv28341/src/include Modified Files: Internals.h Log Message: Make gActiveObjects, gDocumentInterface and gAppName variables common to Win32 and GTK Index: Internals.h =================================================================== RCS file: /cvsroot/htoolkit/port/src/include/Internals.h,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Internals.h 10 Feb 2003 22:42:11 -0000 1.4 --- Internals.h 3 Mar 2003 00:21:51 -0000 1.5 *************** *** 4,7 **** --- 4,11 ---- #include <config.h> + extern int gActiveObjects; + extern int gDocumentInterface; + extern char *gAppName; + #ifdef WIN32_TARGET *************** *** 12,20 **** extern HMODULE ghModule; extern HFONT ghControlFont; - extern int gDocumentInterface; extern HWND ghWndFrame; extern HWND ghWndClient; - extern DWORD gActiveObjects; - extern LPCSTR gAppName; extern WindowHandle checkWindow(HWND hWnd, char *className); --- 16,21 ---- |