reactos/dll/win32/shdocvw/objects.h
Katayama Hirofumi MZ 960a305e5c
[BROWSEUI][SHDOCVW] Move CExplorerBand to shdocvw (#7163)
CExplorerBand should be
implemented in shdocvw.dll.
894ad4f17d/modules/rostests/apitests/com/shdocvw.c (L37)
JIRA issue: CORE-19698
- Move CExplorerBand code
  from browseui to shdocvw.
- Delete IDS_FOLDERSLABEL
  resource string from browseui.
- Add IDS_FOLDERSLABEL
  resource string to shdocvw.
- Adapt code to these changes.
- Add sdk/include/reactos/
 shdocvw_undoc.h.
- Implement IEILIsEqual function.
2024-08-02 04:12:02 +09:00

42 lines
1.2 KiB
C

/*
* PROJECT: ReactOS Explorer
* LICENSE: LGPL-2.1-or-later (https://spdx.org/licenses/LGPL-2.1-or-later)
* PURPOSE: shdocvw.dll objects
* 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);
EXTERN_C void __cxa_pure_virtual(void);
#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);