From ee54c594e9dbe121894ffbc60861ccc31493a57f Mon Sep 17 00:00:00 2001 From: Nikolay Sivov Date: Mon, 14 Sep 2020 17:37:52 +0300 Subject: [PATCH] ole32: Remove some leftovers from private header. Signed-off-by: Nikolay Sivov Signed-off-by: Huw Davies Signed-off-by: Alexandre Julliard --- dlls/ole32/compobj_private.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/dlls/ole32/compobj_private.h b/dlls/ole32/compobj_private.h index 18b39d655f0..f10b41907a1 100644 --- a/dlls/ole32/compobj_private.h +++ b/dlls/ole32/compobj_private.h @@ -41,8 +41,6 @@ DEFINE_OLEGUID( CLSID_DfMarshal, 0x0000030b, 0, 0 ); -struct apartment; - /* this is what is stored in TEB->ReservedForOle */ struct oletls { @@ -95,14 +93,8 @@ static inline struct apartment * COM_CurrentApt(void) return COM_CurrentInfo()->apt; } -/* helpers for debugging */ -# define DEBUG_SET_CRITSEC_NAME(cs, name) (cs)->DebugInfo->Spare[0] = (DWORD_PTR)(__FILE__ ": " name) -# define DEBUG_CLEAR_CRITSEC_NAME(cs) (cs)->DebugInfo->Spare[0] = 0 - #define CHARS_IN_GUID 39 /* including NULL */ -#define WINE_CLSCTX_DONT_HOST 0x80000000 - /* from dlldata.c */ extern HINSTANCE hProxyDll DECLSPEC_HIDDEN; extern HRESULT WINAPI OLE32_DllGetClassObject(REFCLSID rclsid, REFIID iid,LPVOID *ppv) DECLSPEC_HIDDEN;