Share via


TestProc (Windows Embedded CE 6.0)

1/6/2010

This function is a prototype that is used for all test cases listed in the test module's function table. The following is the syntax for a test case function named TestProcExample.

Syntax

TESTPROCAPI TestProcExample(
  UINT uMsg,
  TPPARAM tpParam,
  LPFUNCTION_TABLE_ENTRY lpFTE
)

Parameters

  • uMsg
    TestProc functions are always called with known defined message value in the uMsg parameter.
  • tpParam
    Dependent on the uMsg parameter and is usually a pointer to a structure for that message type.
  • lpFTE
    Pointer to the DLL's global function table array, which represents the current test. From this pointer, the DLL file can reference all fields in the function table entry, such as the lpDescription, dwUserData and dwUniqueID.

Return Values

Returns SPR_NOT_HANDLED for all messages that are not handled.

Requirements

Header tux.h
Library coredll.lib
Windows Embedded CE Windows CE 3.0 and later

See Also

Reference

Tux Functions