WinDeleteProcedure: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
Removes the procedure from access that had been allocated by a previous call to [[WinLoadProcedure]]. | Removes the procedure from access that had been allocated by a previous call to [[WinLoadProcedure]]. | ||
=== Parameters | ==Syntax== | ||
WinDeleteProcedure(anchorBlockHndl, procedureIdentifier) | |||
==Parameters == | |||
; anchorBlockHndl - [[HAB]] - input : The anchor block handle. | ; anchorBlockHndl - [[HAB]] - input : The anchor block handle. | ||
; procedureIdentifier - [[PFNWP]] - input : The identity of the procedure. | ; procedureIdentifier - [[PFNWP]] - input : The identity of the procedure. | ||
== Constants == | |||
None | None | ||
== Returns == | |||
This function returns a [[BOOL]] with possible values of: | This function returns a [[BOOL]] with possible values of: | ||
;[[TRUE]] : Library successfully unloaded. | ;[[TRUE]] : Library successfully unloaded. | ||
;[[FALSE]] : Library not successfully unloaded. | ;[[FALSE]] : Library not successfully unloaded. | ||
== Module == | |||
PMMERGE | PMMERGE | ||
== Define (C/C++) == | |||
INCL_WINLOAD or INCL_WIN or INCL_PM | INCL_WINLOAD or INCL_WIN or INCL_PM | ||
== Export name/Ordinal == | |||
@3102 | @3102 | ||
== Calling Convention == | |||
[[Cdecl32]] | [[Cdecl32]] | ||
== Example Code == | |||
... | ... | ||
BOOL rc; | BOOL rc; | ||
Line 35: | Line 37: | ||
... | ... | ||
== Related Functions == | |||
*[[WinLoadLibrary]] | *[[WinLoadLibrary]] | ||
*[[WinDeleteLibrary]] | *[[WinDeleteLibrary]] |
Latest revision as of 04:58, 20 May 2018
Removes the procedure from access that had been allocated by a previous call to WinLoadProcedure.
Syntax
WinDeleteProcedure(anchorBlockHndl, procedureIdentifier)
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:
Module
PMMERGE
Define (C/C++)
INCL_WINLOAD or INCL_WIN or INCL_PM
Export name/Ordinal
@3102
Calling Convention
Example Code
... BOOL rc; HAB hab; PFNWP pfnwpProcID; ... rc = WinDeleteProcedure (hab, pfnwpProcID); ...