en:docs:fapi:dosallochuge

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
en:docs:fapi:dosallochuge [2021/09/14 14:17] prokusheven:docs:fapi:dosallochuge [2021/09/15 13:29] prokushev
Line 20: Line 20:
  
 ^ Bit ^        Description ^ ^ Bit ^        Description ^
-| 15-4 |       Reserved and must be set to zero. | +| 15-4 | Reserved and must be set to zero. | 
-| 3  |      If segment is shared, it can be decreased in size by [[DosReallocHuge]]. | +| 3  | If segment is shared, it can be decreased in size by [[DosReallocHuge]]. | 
-| 2  |      Segment may be discarded by the system in low memory situations. | +| 2  | Segment may be discarded by the system in low memory situations. | 
-| 1  |      Segment is shareable through [[DosGetSeg]]. | +| 1  | Segment is shareable through [[DosGetSeg]]. | 
-| 0  |      Segment is shareable through [[DosGiveSeg]]. |+| 0  | Segment is shareable through [[DosGiveSeg]]. | 
 + 
 +<code c> 
 +#define SEG_NONSHARED    0 
 +#define SEG_GIVEABLE     1 
 +#define SEG_GETTABLE     2 
 +#define SEG_DISCARDABLE 
 +</code>
  
 ===== Return Code ===== ===== Return Code =====