|
From: <kr_...@us...> - 2003-03-26 08:46:04
|
Update of /cvsroot/htoolkit/port/src/cbits/Win32
In directory sc8-pr-cvs1:/tmp/cvs-serv22470/src/cbits/Win32
Modified Files:
Frame.c Util.c
Log Message:
Replace DestroyProcess with ProcessDestroy and DismissProcess with ProcessDestroy. This makes more consistent naming convention.
Index: Frame.c
===================================================================
RCS file: /cvsroot/htoolkit/port/src/cbits/Win32/Frame.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Frame.c 10 Feb 2003 22:42:10 -0000 1.1
--- Frame.c 26 Mar 2003 08:45:54 -0000 1.2
***************
*** 9,13 ****
{
case WM_CLOSE:
! handleDismissProcess();
return 0;
case WM_CREATE:
--- 9,13 ----
{
case WM_CLOSE:
! handleProcessDismiss();
return 0;
case WM_CREATE:
Index: Util.c
===================================================================
RCS file: /cvsroot/htoolkit/port/src/cbits/Win32/Util.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** Util.c 24 Mar 2003 15:40:42 -0000 1.7
--- Util.c 26 Mar 2003 08:45:56 -0000 1.8
***************
*** 200,204 ****
}
! handleDestroyProcess();
doneGdiPlus();
--- 200,204 ----
}
! handleProcessDestroy();
doneGdiPlus();
|