Update of /cvsroot/syncml-ctoolkit/toolkit/src/sml/mgr/win
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10631/src/sml/mgr/win
Modified Files:
libinit.c
Log Message:
Modified comments to doxygen-readable
Removed duplicated comments
Index: libinit.c
===================================================================
RCS file: /cvsroot/syncml-ctoolkit/toolkit/src/sml/mgr/win/libinit.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** libinit.c 2 May 2003 22:05:08 -0000 1.2
--- libinit.c 24 May 2004 01:33:37 -0000 1.3
***************
*** 1,12 ****
! /*************************************************************************/
! /* module: Managing DLL */
! /* */
! /* file: libinit.c */
! /* target system: Windows */
! /* target OS: Windows 9x/NT */
! /* */
! /* Description: */
! /* Platform dependant DLL-entry-function */
! /*************************************************************************/
/*
--- 1,10 ----
! /**
! * @file
! * Managing DLL
! *
! * @target_system Windows
! * @target_os Windows 9x/NT
! * @description Platform dependant DLL-entry-function
! */
/*
***************
*** 61,69 ****
BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
! /*
! *----------------------------------------------------------------------
! *
! * DllMain --
! *
* This routine is called by the Mingw32, Cygwin32 or VC++ C run
* time library init code, or the Borland DllEntryPoint routine. It
--- 59,63 ----
BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
! /**
* This routine is called by the Mingw32, Cygwin32 or VC++ C run
* time library init code, or the Borland DllEntryPoint routine. It
***************
*** 71,84 ****
* libraries.
*
! * Results:
! * TRUE on sucess, FALSE on failure.
! *
! * Side effects:
! *
! *----------------------------------------------------------------------
*/
! BOOL APIENTRY DllMain(HINSTANCE hInst /* Library instance handle. */ ,
! DWORD reason /* Reason this function is being called. */ ,
! LPVOID reserved /* Not used. */ )
{
--- 65,78 ----
* libraries.
*
! * @param hInst (IN)
! * Library instance handle.
! * @param reason (IN)
! * Reason this function is being called.
! * @param reserved (IN)
! * Not used.
! * @return TRUE on sucess,\n
! * FALSE on failure.
*/
! BOOL APIENTRY DllMain(HINSTANCE hInst, DWORD reason, LPVOID reserved)
{
|