RexxRegisterExitDll - Parameters
ModuleName (PSZ) - input
Address
of an ASCIIZ dynamic link library name. ModuleName is the DLL file
containing the exit handler routine.
EntryPoint
(PSZ) - input
Address of an ASCIIZ dynalink
procedure name. EntryPoint is the routine within ModuleName that
REXX calls as an exit handler.
UserArea (PUCHAR)
- input
Address of an 8-byte area of user-defined
information. The 8 bytes UserArea addresses are saved with the exit
handler registration. UserArea can be NULL if there is no user information
to save. The RexxQueryExit function can retrieve the saved user information.
DropAuth (ULONG) - input
The
drop authority. DropAuth identifies the processes that can deregister
the exit handler. The possible DropAuth values are:
RXEXIT_DROPPABLE
Any process can deregister the
exit handler with RexxDeregisterExit.
RXEXIT_NONDROP
Only a thread within the same process as the thread
that registered the handler can deregister the handler with RexxDeregisterExit.
[Back: RexxRegisterExitDll - Syntax]
[Next: RexxRegisterExitDll - Returns]