Revert r46466 this time for real
[reactos.git] / reactos / base / applications / control / control.h
1 /*
2 * PROJECT: ReactOS System Control Panel
3 * FILE: base/applications/control/control.h
4 * PURPOSE: ReactOS System Control Panel
5 * PROGRAMMERS: Gero Kuehn (reactos.filter@gkware.com)
6 * Colin Finck (mail@colinfinck.de)
7 */
8
9 #include <windows.h>
10 #include <tchar.h>
11 #include "resource.h"
12
13 #define CCH_UINT_MAX 11
14 #define MAX_VALUE_NAME 16383
15
16 /* Macro for calling "rundll32.exe"
17 According to MSDN, ShellExecute returns a value greater than 32 if the operation was successful. */
18 #define RUNDLL(param) ((INT_PTR)ShellExecute(NULL, _T("open"), _T("rundll32.exe"), (param), NULL, SW_SHOWDEFAULT) > 32)