Removed traces of the regedit unit tests.
[wine] / programs / control / control.c
1 /*
2  *   Control
3  *   Copyright (C) 1998 by Marcel Baur <mbaur@g26.ethz.ch>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 #include <stdio.h>
21 #include <string.h>
22 #include <windows.h>
23 #include <shellapi.h>
24 #include "params.h"
25
26 void launch(const char *what)
27 {
28   extern void WINAPI Control_RunDLL(HWND hWnd, HINSTANCE hInst, LPCSTR cmd, DWORD nCmdShow);
29
30   Control_RunDLL(GetDesktopWindow(), 0, what, SW_SHOW);
31   exit(0);
32 }
33
34 int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrev, CHAR *szParam, INT argc)
35 {
36
37   char szParams[255];
38   lstrcpy(szParams, szParam);
39   CharUpper(szParams);
40
41   switch (argc) {
42     case 0:  /* no parameters - pop up whole "Control Panel" by default */
43              launch("");
44              break;
45
46     case 1:  /* check for optional parameter */
47              if (!strcmp(szParams,szP_DESKTOP))
48                  launch(szC_DESKTOP);
49              if (!strcmp(szParams,szP_COLOR))
50                  launch(szC_COLOR);
51              if (!strcmp(szParams,szP_DATETIME))
52                  launch(szC_DATETIME);
53              if (!strcmp(szParams,szP_DESKTOP))
54                  launch(szC_DESKTOP);
55              if (!strcmp(szParams,szP_INTERNATIONAL))
56                  launch(szC_INTERNATIONAL);
57              if (!strcmp(szParams,szP_KEYBOARD))
58                  launch(szC_KEYBOARD);
59              if (!strcmp(szParams,szP_MOUSE))
60                  launch(szC_MOUSE);
61              if (!strcmp(szParams,szP_PORTS))
62                  launch(szC_PORTS);
63              if (!strcmp(szParams,szP_PRINTERS))
64                  launch(szC_PRINTERS);
65
66              /* try to launch if a .cpl file is given directly */
67              launch(szParams);
68              break;
69
70     default: printf("Syntax error.");
71   }
72   return 0;
73 }