mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
678aa63b3a
Instead link to cpprt. This fixes build with GCC 13, which generates symbols that conflict with __cxa_pure_virtual, if there is a pure virtual function in a vtable. Importing __cxa_pure_virtual from a library works for all versions of GCC.
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/*
|
|
* PROJECT: ReactOS shdocvw
|
|
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
|
|
* PURPOSE: Shell objects header file
|
|
* COPYRIGHT: Copyright 2024 Katayama Hirofumi MZ <katayama.hirofumi.mz@gmail.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <windows.h>
|
|
#include <shlobj.h>
|
|
#include <shlwapi.h>
|
|
#include <olectlid.h>
|
|
#include <exdispid.h>
|
|
#include "shdocvw.h"
|
|
|
|
#ifdef __cplusplus
|
|
#include <atlbase.h>
|
|
#include <atlcom.h>
|
|
#include <atlwin.h>
|
|
#include <undocshell.h>
|
|
#include <shlobj_undoc.h>
|
|
#include <shlguid_undoc.h>
|
|
#include <shlwapi_undoc.h>
|
|
#include <shdocvw_undoc.h>
|
|
#include <shdeprecated.h>
|
|
#include <shellutils.h>
|
|
#include <ui/rosctrls.h>
|
|
#include "CExplorerBand.h"
|
|
#include "CFavBand.h"
|
|
#include "utility.h"
|
|
void *operator new(size_t size);
|
|
void operator delete(void *ptr);
|
|
void operator delete(void *ptr, size_t size);
|
|
#endif /* def C++ */
|
|
|
|
EXTERN_C VOID SHDOCVW_Init(HINSTANCE hInstance);
|
|
EXTERN_C HRESULT SHDOCVW_DllCanUnloadNow(VOID);
|
|
EXTERN_C HRESULT SHDOCVW_DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv);
|
|
EXTERN_C HRESULT SHDOCVW_DllRegisterServer(VOID);
|
|
EXTERN_C HRESULT SHDOCVW_DllUnregisterServer(VOID);
|