void FreeProcInstance(lpProc) | |||||
FARPROC lpProc; | /* instance address of function to free | */ |
The FreeProcInstance function frees the specified function from the data segment bound to it by the MakeProcInstance function.
lpProc
Points to the procedure-instance address of the function to be freed. It must be created by using the MakeProcInstance function.
This function does not return a value.
After a procedure instance has been freed, attempts to call the function using the freed procedure-instance address will result in an unrecoverable error.