en:docs:fapi:dosgetenv

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
en:docs:fapi:dosgetenv [2021/08/31 04:03] prokusheven:docs:fapi:dosgetenv [2021/12/05 09:57] (current) prokushev
Line 5: Line 5:
 This call returns the address of the process environment string for the current process. This call returns the address of the process environment string for the current process.
  
-==Syntax==+===== Syntax =====
  
 <code c> <code c>
Line 11: Line 11:
 </code> </code>
  
-==Parameters==+===== Parameters =====
  
-  * EnvSegment (PSEL) - output : Address of the selector for the environment segment. +  * EnvSegment ([[PSEL]]) - output : Address of the selector for the environment segment. 
-  * CmdOffset (PUSHORT) - output : Address of the offset to the command line within the environment segment.+  * CmdOffset ([[PUSHORT]]) - output : Address of the offset to the command line within the environment segment.
  
-==Return Code==+===== Return Code =====
  
-  * rc (USHORT) - return:Return code descriptions are:+rc ([[USHORT]]) - return:Return code descriptions are:
  
   * 0  NO_ERROR   * 0  NO_ERROR
   * 12 ERROR_INVALID_ACCESS    * 12 ERROR_INVALID_ACCESS 
  
-==Remarks==+===== Remarks =====
  
 DosGetEnv can be used by dynamic link library routines that need to determine the environment for the current process. DosGetEnv can be used by dynamic link library routines that need to determine the environment for the current process.
Line 29: Line 29:
 When a process issues [[DosExecPgm]] to start another process, the program that receives control is returned a pointer to the environment segment. When a process issues [[DosExecPgm]] to start another process, the program that receives control is returned a pointer to the environment segment.
  
-==Bindings== +===== Bindings ===== 
-===C Binding===+==== C Binding ===
 <code c> <code c>
 #define INCL_DOSMISC #define INCL_DOSMISC
Line 40: Line 41:
  
 USHORT  rc;            /* return code */ USHORT  rc;            /* return code */
-</code c>+</code>
  
-===MASM===+==== MASM ====
 <code asm> <code asm>
 EXTRN  DosGetEnv:FAR EXTRN  DosGetEnv:FAR
Line 54: Line 55:
 </code> </code>
  
-==Example Code==+==== Example Code ====
  
 The following example shows how one may obtain information for program initialization. The program locates the environment segment and prints the name of the command from the command line. It then obtains the OS/2 version number and prints it.  The following example shows how one may obtain information for program initialization. The program locates the environment segment and prints the name of the command from the command line. It then obtains the OS/2 version number and prints it. 
Line 99: Line 100:
  
  
-====== Note ======+===== Note =====
  
 Text based on [[http://www.edm2.com/index.php/DosGetEnv]] Text based on [[http://www.edm2.com/index.php/DosGetEnv]]