mirror of
https://github.com/reactos/reactos.git
synced 2024-11-09 08:08:38 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
23 lines
738 B
C
23 lines
738 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 <tchar.h>
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winuser.h>
|
|
#include <winreg.h>
|
|
#include <shellapi.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)
|