2 * Control panel definitions
4 * Copyright (C) 2001 Eric Pouech
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #define WM_CPL_LAUNCH (WM_USER+1000)
31 #define WM_CPL_LAUNCHED (WM_USER+1001)
33 typedef LONG (APIENTRY
*APPLET_PROC
)(HWND hwndCpl
, UINT msg
, LPARAM lParam1
, LPARAM lParam2
);
35 typedef struct tagCPLINFO
{
40 } CPLINFO
, *LPCPLINFO
;
42 typedef struct tagNEWCPLINFOA
52 } NEWCPLINFOA
, *LPNEWCPLINFOA
;
54 typedef struct tagNEWCPLINFOW
63 WCHAR szHelpFile
[128];
64 } NEWCPLINFOW
, *LPNEWCPLINFOW
;
66 DECL_WINELIB_TYPE_AW(NEWCPLINFO
)
67 DECL_WINELIB_TYPE_AW(LPNEWCPLINFO
)
69 #define CPL_DYNAMIC_RES 0
71 #define CPL_GETCOUNT 2
77 #define CPL_NEWINQUIRE 8
78 #define CPL_STARTWPARMSA 9
79 #define CPL_STARTWPARMSW 10
80 #define CPL_STARTWPARMS WINELIB_NAME_AW(CPL_STARTWPARMS)