mirror of
https://github.com/reactos/reactos.git
synced 2025-08-04 08:05:43 +00:00
halfplemented mouse control panel applet
svn path=/trunk/; revision=21786
This commit is contained in:
parent
56339e3e49
commit
534b5a2027
3 changed files with 1126 additions and 23 deletions
|
@ -105,12 +105,20 @@ DllMain(HINSTANCE hinstDLL,
|
|||
DWORD dwReason,
|
||||
LPVOID lpReserved)
|
||||
{
|
||||
INITCOMMONCONTROLSEX InitControls;
|
||||
switch(dwReason)
|
||||
{
|
||||
case DLL_PROCESS_ATTACH:
|
||||
case DLL_THREAD_ATTACH:
|
||||
hApplet = hinstDLL;
|
||||
break;
|
||||
|
||||
|
||||
|
||||
InitControls.dwSize = sizeof(INITCOMMONCONTROLSEX);
|
||||
InitControls.dwICC = ICC_LISTVIEW_CLASSES | ICC_UPDOWN_CLASS | ICC_BAR_CLASSES;
|
||||
InitCommonControlsEx(&InitControls);
|
||||
|
||||
hApplet = hinstDLL;
|
||||
break;
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
|
|
|
@ -11,6 +11,8 @@
|
|||
<library>user32</library>
|
||||
<library>comctl32</library>
|
||||
<library>devmgr</library>
|
||||
<library>comdlg32</library>
|
||||
<library>gdi32</library>
|
||||
<file>keyboard.c</file>
|
||||
<file>main.c</file>
|
||||
<file>mouse.c</file>
|
||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue