en:docs:fapi:dosmemavail

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:docs:fapi:dosmemavail [2021/09/14 14:32] – created prokusheven:docs:fapi:dosmemavail [2021/09/15 02:48] (current) prokushev
Line 1: Line 1:
 +{{page>en:templates:fapiint}}
 +
 +====== DosMemAvail ======
 +
 This call returns the size of the largest block of free memory. This call returns the size of the largest block of free memory.
  
-==Syntax==+===== Syntax ===== 
  
 <code c> <code c>
Line 7: Line 12:
 </code> </code>
  
-==Parameters==+===== Parameters =====
  
-  * MemAvailSize (PULONG) - output: Address of the size of the largest free block of memory. 
  
-==Return Code== +  * MemAvailSize ([[PULONG]]) - output: Address of the size of the largest free block of memory in bytes. 
-;rc (USHORT) - return:Return code description is:+ 
 +===== Return Code ===== 
 + 
 +  rc ([[USHORT]]) - return: Return code:
  
   *0 NO_ERROR   *0 NO_ERROR
  
-==Remarks==+===== Remarks ===== 
 DosMemAvail allows an application to determine how heavily used system memory is at a particular time. The returned value is a "snapshot" that may be valid only at the moment this function is issued and can be expected to change at any time due to system activity. DosMemAvail allows an application to determine how heavily used system memory is at a particular time. The returned value is a "snapshot" that may be valid only at the moment this function is issued and can be expected to change at any time due to system activity.
  
 This call can be used as an indicator for memory availability before a call to [[DosAllocHuge]] is made. This call can be used as an indicator for memory availability before a call to [[DosAllocHuge]] is made.
  
-==Bindings== +===== Bindings ===== 
-===C===+ 
 +==== C ===
 <code c> <code c>
 #define INCL_DOSMEMMGR #define INCL_DOSMEMMGR
Line 30: Line 40:
 </code> </code>
  
-===MASM===+==== MASM ===
 <code asm> <code asm>
 EXTRN  DosMemAvail:FAR EXTRN  DosMemAvail:FAR
Line 41: Line 52:
 </code> </code>
  
-[[http://www.edm2.com/index.php/DosMemAvail]]+===== Note ===== 
 +Text based on [[http://www.edm2.com/index.php/DosMemAvail]] 
 + 
 +{{page>en:templates:fapi}}