Make the argument comments out-of-line.

This commit is contained in:
Dimi Paun 2005-05-18 09:45:12 +00:00 committed by Alexandre Julliard
parent 8a6a9a6659
commit 88fe1ff962
1 changed files with 8 additions and 2 deletions

View File

@ -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;