Jump to content

WinDeleteProcedure: Difference between revisions

From EDM2
m Redirected page to OS2 API:PMI:WinDeleteProcedure
Ak120 (talk | contribs)
No edit summary
Line 1: Line 1:
#REDIRECT [[OS2 API:PMI:WinDeleteProcedure]]
== WinDeleteProcedure ==
; WinDeleteProcedure(anchorBlockHndl, procedureIdentifier) : Removes the procedure from access that had been allocated by a previous call to [[WinLoadProcedure]].
 
=== Parameters ===
; anchorBlockHndl - [[HAB]] - input : The anchor block handle.
; procedureIdentifier - [[PFNWP]] - input : The identity of the procedure.
 
=== Constants ===
None
 
=== Returns ===
This function returns a [[BOOL]] with possible values of:
;[[TRUE]] : Library successfully unloaded.
;[[FALSE]] : Library not successfully unloaded.
 
=== Module ===
PMMERGE
 
=== Define (C/C++) ===
INCL_WINLOAD or INCL_WIN or INCL_PM
 
=== Export name/Ordinal ===
@3102
 
=== Calling conversion ===
[[Cdecl32]]
 
=== Example Code ===
...
BOOL  rc;
HAB    hab;
PFNWP  pfnwpProcID;
...
rc = WinDeleteProcedure (hab, pfnwpProcID);
...
 
=== Related Functions ===
*[[WinLoadLibrary]]
*[[WinDeleteLibrary]]
*[[WinLoadProcedure]]
 
[[Category:Win]]

Revision as of 19:06, 8 December 2016

WinDeleteProcedure

WinDeleteProcedure(anchorBlockHndl, procedureIdentifier)
Removes the procedure from access that had been allocated by a previous call to WinLoadProcedure.

Parameters

anchorBlockHndl - HAB - input
The anchor block handle.
procedureIdentifier - PFNWP - input
The identity of the procedure.

Constants

None

Returns

This function returns a BOOL with possible values of:

TRUE
Library successfully unloaded.
FALSE
Library not successfully unloaded.

Module

PMMERGE

Define (C/C++)

INCL_WINLOAD or INCL_WIN or INCL_PM

Export name/Ordinal

@3102

Calling conversion

Cdecl32

Example Code

...
BOOL   rc;
HAB    hab;
PFNWP  pfnwpProcID;
...
rc = WinDeleteProcedure (hab, pfnwpProcID);
...

Related Functions