Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygencpanel.h
Go to the documentation of this file.
00001 /* Control Panel management 00002 * 00003 * Copyright 2001 Eric Pouech 00004 * 00005 * This library is free software; you can redistribute it and/or 00006 * modify it under the terms of the GNU Lesser General Public 00007 * License as published by the Free Software Foundation; either 00008 * version 2.1 of the License, or (at your option) any later version. 00009 * 00010 * This library is distributed in the hope that it will be useful, 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 * Lesser General Public License for more details. 00014 * 00015 * You should have received a copy of the GNU Lesser General Public 00016 * License along with this library; if not, write to the Free Software 00017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA 00018 */ 00019 00020 #ifndef __WINE_SHELL_CPANEL_H 00021 #define __WINE_SHELL_CPANEL_H 00022 00023 #include "cpl.h" 00024 00025 typedef struct CPlApplet 00026 { 00027 struct CPlApplet *next; /* linked list */ 00028 HWND hWnd; 00029 unsigned count; /* number of subprograms */ 00030 HMODULE hModule; /* module of loaded applet */ 00031 APPLET_PROC proc; /* entry point address */ 00032 NEWCPLINFOW info[1]; /* array of count information. 00033 * dwSize field is 0 if entry is invalid */ 00034 } CPlApplet; 00035 00036 typedef struct CPanel 00037 { 00038 CPlApplet *first; /* linked list */ 00039 HWND hWnd; 00040 unsigned status; 00041 CPlApplet *clkApplet; 00042 unsigned clkSP; 00043 } CPanel; 00044 00045 00046 CPlApplet *Control_LoadApplet(HWND hWnd, LPCWSTR cmd, CPanel* panel); 00047 CPlApplet *Control_UnloadApplet(CPlApplet* applet); 00048 00049 #endif /* __WINE_SHELL_CPANEL_H */ Generated on Sun May 27 2012 04:26:16 for ReactOS by
1.7.6.1
|