Commit 88fe1ff9 authored by Dimi Paun's avatar Dimi Paun Committed by Alexandre Julliard

Make the argument comments out-of-line.

parent 8a6a9a66
...@@ -210,11 +210,14 @@ void VIRTUAL_Dump(void) ...@@ -210,11 +210,14 @@ void VIRTUAL_Dump(void)
* *
* Find the view containing a given address. The csVirtual section must be held by caller. * Find the view containing a given address. The csVirtual section must be held by caller.
* *
* PARAMS
* addr [I] Address
*
* RETURNS * RETURNS
* View: Success * View: Success
* NULL: Failure * 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; struct list *ptr;
...@@ -470,10 +473,13 @@ static void VIRTUAL_GetWin32Prot( ...@@ -470,10 +473,13 @@ static void VIRTUAL_GetWin32Prot(
* *
* Build page protections from Win32 flags. * Build page protections from Win32 flags.
* *
* PARAMS
* protect [I] Win32 protection flags
*
* RETURNS * RETURNS
* Value of page protection flags * Value of page protection flags
*/ */
static BYTE VIRTUAL_GetProt( DWORD protect ) /* [in] Win32 protection flags */ static BYTE VIRTUAL_GetProt( DWORD protect )
{ {
BYTE vprot; BYTE vprot;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment