Skip to content

Latest commit

 

History

History
50 lines (35 loc) · 1.8 KB

get-pgmptr.md

File metadata and controls

50 lines (35 loc) · 1.8 KB
description title ms.date api_name api_location api_type topic_type f1_keywords helpviewer_keywords ms.assetid
Learn more about: _get_pgmptr
_get_pgmptr
4/2/2020
_get_pgmptr
_o__get_pgmptr
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
api-ms-win-crt-runtime-l1-1-0.dll
DLLExport
apiref
get_pgmptr
_get_pgmptr
get_pgmptr function
_get_pgmptr function
pgmptr global variable
_pgmptr global variable
29f16a9f-a685-4721-add3-7fad4f67eece

_get_pgmptr

Gets the current value of the _pgmptr global variable.

Syntax

errno_t _get_pgmptr(
   char **pValue
);

Parameters

pValue
A pointer to a string to be filled with the current value of the _pgmptr variable.

Return value

Returns zero if successful; an error code on failure. If pValue is NULL, the invalid parameter handler is invoked as described in Parameter validation. If execution is allowed to continue, this function sets errno to EINVAL and returns EINVAL.

Remarks

Only call _get_pgmptr if your program has a narrow entry point, like main() or WinMain(). The _pgmptr global variable contains the full path to the executable associated with the process. For more information, see _pgmptr, _wpgmptr.

By default, this function's global state is scoped to the application. To change this behavior, see Global state in the CRT.

Requirements

Routine Required header
_get_pgmptr <stdlib.h>

For more compatibility information, see Compatibility.

See also

_get_wpgmptr