Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:docs:fapi:dosqcurdir [2021/09/12 03:22] – prokushev | en:docs:fapi:dosqcurdir [2021/12/05 10:59] (current) – prokushev | ||
---|---|---|---|
Line 5: | Line 5: | ||
This call returns the full path name of the current directory for the requesting process for the specified drive. | This call returns the full path name of the current directory for the requesting process for the specified drive. | ||
- | ==Syntax== | + | ===== Syntax |
<code c> | <code c> | ||
Line 11: | Line 11: | ||
</ | </ | ||
- | ==Parameters== | + | ===== Parameters |
- | * DriveNumber (USHORT) - input : Drive number, for example: | + | * DriveNumber ([[USHORT]]) - input : Drive number, for example: |
- | Value | + | |
- | | + | |
- | | + | |
- | | + | |
- | B ... | + | |
- | * DirPath (PBYTE) - output : Address of the fully qualified path name of current directory. | + | |
- | * DirPathLen (PUSHORT) - input/ | + | |
+ | * DirPath ([[PBYTE]]) - output : Address of the fully qualified path name of current directory. | ||
+ | * DirPathLen ([[PUSHORT]]) - input/ | ||
+ | |||
+ | ===== Return Code ===== | ||
+ | |||
+ | rc ([[USHORT]]) - return | ||
- | ==Return Code== | ||
- | rc (USHORT) - return | ||
Return code descriptions are: | Return code descriptions are: | ||
Line 32: | Line 36: | ||
* 111 ERROR_BUFFER_OVERFLOW | * 111 ERROR_BUFFER_OVERFLOW | ||
- | ==Remarks== | + | ===== Remarks ===== |
The drive letter is not part of the returned string. The string does not begin with a backslash and is terminated by a byte containing 00H. | The drive letter is not part of the returned string. The string does not begin with a backslash and is terminated by a byte containing 00H. | ||
Line 39: | Line 44: | ||
For FSDs, the case of the current directory is set according to the DirName passed in, not according to the case of the directories on disk. For example, if the directory " | For FSDs, the case of the current directory is set according to the DirName passed in, not according to the case of the directories on disk. For example, if the directory " | ||
- | Programs running without the NEWFILES bit set are allowed to DosChDir to a non-8.3 filename format directory. | + | Programs running without the NEWFILES bit set are allowed to [[DosChDir]] to a non-8.3 filename format directory. |
[[DosQSysInfo]] must be used by an application to determine the maximum path length supported by OS/2. The returned value should be used to dynamically allocate buffers that are to be used to store paths. | [[DosQSysInfo]] must be used by an application to determine the maximum path length supported by OS/2. The returned value should be used to dynamically allocate buffers that are to be used to store paths. | ||
- | ==Bindings== | + | ===== Bindings ===== |
- | ===C Binding=== | + | |
+ | ==== C Binding ==== | ||
<code c> | <code c> | ||
#define INCL_DOSFILEMGR | #define INCL_DOSFILEMGR | ||
Line 57: | Line 64: | ||
</ | </ | ||
- | ===MASM Binding=== | + | ==== MASM Binding ==== |
<code asm> | <code asm> | ||
EXTRN DosQCurDir: | EXTRN DosQCurDir: | ||
Line 67: | Line 75: | ||
CALL | CALL | ||
- | Returns WORD | ||
</ | </ | ||
+ | Returns WORD | ||
- | === Note === | + | ===== Note ===== |
Text based on http:// | Text based on http:// |