mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-27 03:43:36 +00:00
Implementing missing features... JIRA issue: CORE-19278 - Add IDS_RESTRICTED and IDS_RESTRICTIONS resource strings. - Implement SHRestrictedMessageBox function. - Modify shlwapi.spec. - Add prototype into <shlwapi_undoc.h>. - Restrict Folder Options on REST_NOFOLDEROPTIONS by using SHRestrictedMessageBox.
39 lines
741 B
C
39 lines
741 B
C
|
|
#ifndef _SHLWAPI_PCH_
|
|
#define _SHLWAPI_PCH_
|
|
|
|
#include <wine/config.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#define WIN32_NO_STATUS
|
|
#define _INC_WINDOWS
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#define COBJMACROS
|
|
#define NONAMELESSUNION
|
|
#define NONAMELESSSTRUCT
|
|
|
|
#include <windef.h>
|
|
#include <winbase.h>
|
|
#include <winreg.h>
|
|
#include <wingdi.h>
|
|
#include <wincon.h>
|
|
#include <winternl.h>
|
|
#define NO_SHLWAPI_USER
|
|
#include <shlwapi.h>
|
|
#include <shlobj.h>
|
|
|
|
#include <wine/debug.h>
|
|
#include <wine/unicode.h>
|
|
|
|
#ifdef __REACTOS__
|
|
EXTERN_C HRESULT VariantChangeTypeForRead(_Inout_ VARIANTARG *pvarg, _In_ VARTYPE vt);
|
|
EXTERN_C DECLSPEC_HIDDEN HINSTANCE shlwapi_hInstance;
|
|
EXTERN_C ULONG WINAPI GetProcessOsVersion(void);
|
|
#endif
|
|
|
|
#include "resource.h"
|
|
|
|
#endif /* !_SHLWAPI_PCH_ */
|