mirror of
https://github.com/reactos/reactos.git
synced 2024-10-30 03:27:31 +00:00
6afbc8f483
svn path=/branches/reactos-yarotows/; revision=45219
19 lines
654 B
C
19 lines
654 B
C
/*
|
|
* PROJECT: ReactOS System Control Panel
|
|
* FILE: base/applications/control/control.h
|
|
* PURPOSE: ReactOS System Control Panel
|
|
* PROGRAMMERS: Gero Kuehn (reactos.filter@gkware.com)
|
|
* Colin Finck (mail@colinfinck.de)
|
|
*/
|
|
|
|
#include <windows.h>
|
|
#include <tchar.h>
|
|
#include "resource.h"
|
|
|
|
#define CCH_UINT_MAX 11
|
|
#define MAX_VALUE_NAME 16383
|
|
|
|
/* Macro for calling "rundll32.exe"
|
|
According to MSDN, ShellExecute returns a value greater than 32 if the operation was successful. */
|
|
#define RUNDLL(param) ((INT_PTR)ShellExecute(NULL, _T("open"), _T("rundll32.exe"), (param), NULL, SW_SHOWDEFAULT) > 32)
|