FreeProcInstance

2.x

  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.

Parameters

lpProc

Points to the procedure-instance address of the function to be freed. It must be created by using the MakeProcInstance function.

Return Value

This function does not return a value.

Comments

After a procedure instance has been freed, attempts to call the function using the freed procedure-instance address will result in an unrecoverable error.

See Also

MakeProcInstance