ShellProc
This function allows for communication between Tux and the test module. Messages are passed to the ShellProc function to notify or query the test module. All Tux .dll test modules must implement and export a ShellProc function.
SHELLPROCAPI ShellProc(
UINT uMsg,
SPPARAM spParam
);
Parameters
- uMsg
Message value being passed to ShellProc. This parameter may be one of the following values: - spParam
Dependent on the uMsg parameter; usually a pointer to a structure for that message type.
Return Values
Returns SPR_NOT_HANDLED for all messages that are not handled.
Remarks
Every Tux module must at least handle the SPR_REGISTER message; all other messages are optional. See Tuxdemo.cpp for a sample ShellProc implementation.
Requirements
OS Versions: Windows CE 3.0 and later.
Header: Tux.h.
Link Library: Coredll.lib.
See Also
Last updated on Friday, October 08, 2004
© 1992-2003 Microsoft Corporation. All rights reserved.