ChangeSet ID: 17568 CVSROOT: /opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2005/05/18 04:45:12 Modified files: dlls/ntdll : virtual.c Log message: Dimi Paun Make the argument comments out-of-line. Patch: http://cvs.winehq.org/patch.py?id=17568 Old revision New revision Changes Path 1.48 1.49 +8 -2 wine/dlls/ntdll/virtual.c Index: wine/dlls/ntdll/virtual.c diff -u -p wine/dlls/ntdll/virtual.c:1.48 wine/dlls/ntdll/virtual.c:1.49 --- wine/dlls/ntdll/virtual.c:1.48 Tue May 21 10:34:39 2013 +++ wine/dlls/ntdll/virtual.c Tue May 21 10:34:39 2013 @@ -210,11 +210,14 @@ void VIRTUAL_Dump(void) * * Find the view containing a given address. The csVirtual section must be held by caller. * + * PARAMS + * addr [I] Address + * * RETURNS * View: Success * NULL: Failure */ -static struct file_view *VIRTUAL_FindView( const void *addr ) /* [in] Address */ +static struct file_view *VIRTUAL_FindView( const void *addr ) { struct list *ptr; @@ -470,10 +473,13 @@ static void VIRTUAL_GetWin32Prot( * * Build page protections from Win32 flags. * + * PARAMS + * protect [I] Win32 protection flags + * * RETURNS * Value of page protection flags */ -static BYTE VIRTUAL_GetProt( DWORD protect ) /* [in] Win32 protection flags */ +static BYTE VIRTUAL_GetProt( DWORD protect ) { BYTE vprot;