Differences
This shows you the differences between two versions of the page.
en:docs:fapi:dosqsysinfo [2021/09/12 03:29] – created prokushev | en:docs:fapi:dosqsysinfo [2021/09/13 15:37] (current) – prokushev | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | {{page> | ||
+ | |||
+ | ====== DosQSysInfo ====== | ||
+ | |||
This call returns values of static system variables. | This call returns values of static system variables. | ||
- | ==Syntax== | + | ===== Syntax ===== |
- | | + | |
- | ==Parameters== | + | <code c> |
- | ; | + | DosQSysInfo |
- | :Index = 0 indicates maximum path length. The maximum path length is returned in the first word of the DataBuf. | + | </ |
- | ;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: | + | |
- | * 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: | ||
+ | |||
+ | | ||
+ | * 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 " | DosQSysInfo returns the maximum path length supported by the file system currently installed. The path length includes the drive specifier (d:), the leading " | ||
- | 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 | USHORT | ||
- | </PRE> | + | </code> |
+ | |||
+ | ==== MASM ==== | ||
- | ===MASM=== | ||
<code asm> | <code asm> | ||
EXTRN DosQSysInfo: | EXTRN DosQSysInfo: | ||
Line 50: | Line 65: | ||
</ | </ | ||
- | [[http:// | + | Text based on [[http:// |
+ | |||
+ | {{page> | ||