CPlApplet

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This function is a library-defined callback function that serves as the entry point for a Control Panel application.

Syntax

LONG CPlApplet(
  HWND hwndCPl,
  UINT msg,
  LPARAM lParam1,
  LPARAM lParam2
);

Parameters

  • hwndCPl
    [in] Handle to the main window of the controlling application. Use the hwndCPl parameter for other applications or windows that require a handle to a parent window.
  • msg
    [in] Message being sent to the Control Panel application.
  • lParam1
    [in] Additional message-specific information.
  • lParam2
    [in] Additional message-specific information

Return Value

The return value depends on the message.

The CPlApplet function is an application-defined callback function that serves as the entry point for a Control Panel application. The APPLET_PROC type defines a pointer to this callback function.

When the Control Panel starts, it loads all DLL files that have a .cpl file name extension (such as MyApplet.cpl) in the Windows folder. The Control Panel calls the CPlApplet function that was implemented and exported in each CPL file. The CPlApplet function must properly handle any of the control panel messages that are sent to it programmatically or via calls from the Control Panel.

If more than one Control Panel application is implemented in a .cpl file, a single CPlApplet function is used for all of the Control Panel applications.

Requirements

Header cpl.h
Library Developer Implemented
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

CPL_DBLCLK
CPL_EXIT
CPL_GETCOUNT
CPL_INIT
CPL_NEWINQUIRE
CPL_STOP

Other Resources