en:docs:fapi:dosqsysinfo

Differences

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

Link to this comparison view

en:docs:fapi:dosqsysinfo [2021/09/12 03:29] – created prokusheven:docs:fapi:dosqsysinfo [2021/09/13 15:37] (current) prokushev
Line 1: Line 1:
 +{{page>en:templates:fapiint}}
 +
 +====== DosQSysInfo ======
 +
 This call returns values of static system variables. This call returns values of static system variables.
  
-==Syntax== +===== Syntax =====
- DosQSysInfo (Index, DataBuf, DataBufLen)+
  
-==Parameters== +<code c> 
-;Index (USHORT) - input : Ordinal of the system variable to return. +DosQSysInfo (IndexDataBuf, DataBufLen
-:Index = 0 indicates maximum path length. The maximum path length is returned in the first word of the DataBuf+</code>
-;DataBuf (PBYTE- output : Address where the system returns the variable value. +
-;DataBufLen (USHORT) - input : Length of the data buffer.+
  
-==Return Code== +===== Parameters ===== 
-;rc (USHORT) - return:Return code descriptions include: + 
-* 0 NO_ERROR +  * Index (USHORT) - input : Ordinal of the system variable to return. 
-* 87 ERROR_INVALID_PARAMETER +  * Index = 0 indicates maximum path length. The maximum path length is returned in the first word of the DataBuf. 
-*111 ERROR_BUFFER_OVERFLOW+  * DataBuf (PBYTE) - output : Address where the system returns the variable value. 
 +  * DataBufLen (USHORT) - input : Length of the data buffer. 
 + 
 +===== Return Code ===== 
 + 
 + 
 + rc (USHORT) - return:Return code descriptions include: 
 + 
 +  * 0 NO_ERROR 
 +  * 87 ERROR_INVALID_PARAMETER 
 +  *111 ERROR_BUFFER_OVERFLOW 
 + 
 +===== Remarks =====
  
-==Remarks== 
 An OS/2 application may want to reference file objects managed by an installable file system that supports long file names. Because some installable file systems may support longer names than others, an application should issue DosQSysInfo upon initialization. An OS/2 application may want to reference file objects managed by an installable file system that supports long file names. Because some installable file systems may support longer names than others, an application should issue DosQSysInfo upon initialization.
  
 DosQSysInfo returns the maximum path length supported by the file system currently installed. The path length includes the drive specifier (d:), the leading "\" and the trailing null character. DosQSysInfo returns the maximum path length supported by the file system currently installed. The path length includes the drive specifier (d:), the leading "\" and the trailing null character.
  
-The value returned by DosQSysInfo can be used to allocate buffers for storing path names returned by requests, for example, to [[DosFindFirst (FAPI)|DosFindFirst]] and [[DosFindNext (FAPI)|DosFindNext]].+The value returned by DosQSysInfo can be used to allocate buffers for storing path names returned by requests, for example, to [[DosFindFirst]] and [[DosFindNext]].
  
-==Bindings== +===== Bindings ===== 
-===C=== + 
-<PRE>+==== C ===
 + 
 +<code c>
 #define INCL_DOSFILEMGR #define INCL_DOSFILEMGR
  
Line 35: Line 49:
  
 USHORT   rc;           /* return code */ USHORT   rc;           /* return code */
-</PRE>+</code> 
 + 
 +==== MASM ====
  
-===MASM=== 
 <code asm> <code asm>
 EXTRN DosQSysInfo:FAR EXTRN DosQSysInfo:FAR
Line 50: Line 65:
 </code> </code>
  
-[[http://www.edm2.com/index.php/DosQSysInfo]]+Text based on [[http://www.edm2.com/index.php/DosQSysInfo]] 
 + 
 +{{page>en:templates:fapi}}