Files
Katayama Hirofumi MZ 0533a67b18 [SHLWAPI][SHELL32][SDK] Support SHRestrictedMessageBox (#9160)
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.
2026-06-20 09:25:47 +09:00

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_ */