Update of /cvsroot/htoolkit/port/src/include
In directory sc8-pr-cvs1:/tmp/cvs-serv19641/port/src/include
Modified Files:
Internals.h Types.h
Log Message:
The process related features are extracted into newly created module "Process". Added new process attribute "title" instead of title as parameter.
Index: Internals.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/Internals.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Internals.h 29 Mar 2003 08:12:19 -0000 1.7
--- Internals.h 30 Mar 2003 18:49:08 -0000 1.8
***************
*** 33,37 ****
extern int gDocumentInterface;
! extern char *gAppName;
extern GtkWidget *gFrameWidget;
extern GtkWidget *gClientWidget;
--- 33,37 ----
extern int gDocumentInterface;
! extern char *gAppName, *gWindowName;
extern GtkWidget *gFrameWidget;
extern GtkWidget *gClientWidget;
***************
*** 42,45 ****
--- 42,47 ----
void createMDIFrame();
void createSDIFrame();
+
+ void updateFrameTitle();
#endif
Index: Types.h
===================================================================
RCS file: /cvsroot/htoolkit/port/src/include/Types.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Types.h 26 Mar 2003 12:56:30 -0000 1.7
--- Types.h 30 Mar 2003 18:49:08 -0000 1.8
***************
*** 126,132 ****
#endif
! extern void osInit(char *AppName, int DocumentInterface);
extern void osStart();
extern void osQuit();
#endif
--- 126,134 ----
#endif
! extern void osInit(int DocumentInterface);
extern void osStart();
extern void osQuit();
+ extern char *osGetProcessTitle();
+ extern void osSetProcessTitle(char *CString);
#endif
|