mirror of
https://github.com/reactos/reactos.git
synced 2025-01-10 16:18:16 +00:00
c424146e2c
svn path=/branches/cmake-bringup/; revision=48236
18 lines
654 B
C
18 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)
|