WinFreeErrorInfo: Difference between revisions
Appearance
m Ak120 moved page OS2 API:PMI:WinFreeErrorInfo to WinFreeErrorInfo |
|||
Line 16: | Line 16: | ||
INCL_WINERROR or INCL_WIN or INCL_PM | INCL_WINERROR or INCL_WIN or INCL_PM | ||
=== Calling | === Calling Convention === | ||
[[Cdecl32]] | [[Cdecl32]] | ||
Revision as of 19:02, 18 January 2017
WinFreeErrorInfo
- WinFreeErrorInfo(errInfo)
- Releases the memory occupied by the ERRINFO type that was allocated by WinGetErrorInfo.
Parameters
- errInfo - ERRINFO - input
- Memory block to be released.
Constants
None
Returns
Returns BOOL with value of:
Define (C/C++)
INCL_WINERROR or INCL_WIN or INCL_PM
Calling Convention
Example Code
ERRINFO errorInfo; BOOL rc; ... rc = WinFreeErrorInfo(errorInfo); ...