ChangeSet ID: 21184 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@winehq.org 2005/11/09 04:30:57
Modified files: dlls/ntdll : string.c sec.c reg.c error.c
Log message: Markus Amsler markus.amsler@oribi.org Improve c2man Documented-Total count.
Patch: http://cvs.winehq.org/patch.py?id=21184
Old revision New revision Changes Path 1.17 1.18 +3 -0 wine/dlls/ntdll/string.c 1.66 1.67 +2 -2 wine/dlls/ntdll/sec.c 1.64 1.65 +3 -3 wine/dlls/ntdll/reg.c 1.17 1.18 +6 -0 wine/dlls/ntdll/error.c
Index: wine/dlls/ntdll/string.c diff -u -p wine/dlls/ntdll/string.c:1.17 wine/dlls/ntdll/string.c:1.18 --- wine/dlls/ntdll/string.c:1.17 9 Nov 2005 10:30:57 -0000 +++ wine/dlls/ntdll/string.c 9 Nov 2005 10:30:57 -0000 @@ -382,6 +382,9 @@ LONGLONG __cdecl _atoi64( char *str ) * dir [O] Destination for directory component. Should be at least MAX_PATH characters. * fname [O] Destination for File name component. Should be at least MAX_PATH characters. * ext [O] Destination for file extension component. Should be at least MAX_PATH characters. + * + * RETURNS + * Nothing. */ void __cdecl _splitpath(const char* inpath, char * drv, char * dir, char* fname, char * ext ) Index: wine/dlls/ntdll/sec.c diff -u -p wine/dlls/ntdll/sec.c:1.66 wine/dlls/ntdll/sec.c:1.67 --- wine/dlls/ntdll/sec.c:1.66 9 Nov 2005 10:30:57 -0000 +++ wine/dlls/ntdll/sec.c 9 Nov 2005 10:30:57 -0000 @@ -414,7 +414,7 @@ BOOLEAN WINAPI RtlValidSid( PSID pSid ) * lpsd [O] Descriptor to initialise. * rev [I] Revision, must be set to SECURITY_DESCRIPTOR_REVISION. * - * RETURNS: + * RETURNS * Success: STATUS_SUCCESS. * Failure: STATUS_UNKNOWN_REVISION if rev is incorrect. */ @@ -438,7 +438,7 @@ NTSTATUS WINAPI RtlCreateSecurityDescrip * pSourceSD [O] SD to copy from. * pDestinationSD [I] Destination SD. * - * RETURNS: + * RETURNS * Success: STATUS_SUCCESS. * Failure: STATUS_UNKNOWN_REVISION if rev is incorrect. */ Index: wine/dlls/ntdll/reg.c diff -u -p wine/dlls/ntdll/reg.c:1.64 wine/dlls/ntdll/reg.c:1.65 --- wine/dlls/ntdll/reg.c:1.64 9 Nov 2005 10:30:57 -0000 +++ wine/dlls/ntdll/reg.c 9 Nov 2005 10:30:57 -0000 @@ -837,9 +837,9 @@ NTSTATUS WINAPI RtlFormatCurrentUserKeyP /****************************************************************************** * RtlOpenCurrentUser [NTDLL.@] * - * if we return just HKEY_CURRENT_USER the advapi tries to find a remote - * registry (odd handle) and fails - * + * NOTES + * If we return just HKEY_CURRENT_USER the advapi tries to find a remote + * registry (odd handle) and fails. */ DWORD WINAPI RtlOpenCurrentUser( IN ACCESS_MASK DesiredAccess, /* [in] */ Index: wine/dlls/ntdll/error.c diff -u -p wine/dlls/ntdll/error.c:1.17 wine/dlls/ntdll/error.c:1.18 --- wine/dlls/ntdll/error.c:1.17 9 Nov 2005 10:30:58 -0000 +++ wine/dlls/ntdll/error.c 9 Nov 2005 10:30:58 -0000 @@ -132,6 +132,9 @@ DWORD WINAPI RtlGetLastWin32Error(void) * * PARAMS * err [I] The new error value to set + * + * RETURNS + * Nothing. */ void WINAPI RtlSetLastWin32Error( DWORD err ) { @@ -145,6 +148,9 @@ void WINAPI RtlSetLastWin32Error( DWORD * * PARAMS * err [I] The new status value to set + * + * RETURNS + * Nothing. */ void WINAPI RtlSetLastWin32ErrorAndNtStatusFromNtStatus( NTSTATUS status ) {