Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
84b101c5
Commit
84b101c5
authored
Jun 30, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Jul 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Remove DECLSPEC_HIDDEN usage.
parent
a1f8e614
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
9 deletions
+9
-9
connpt.h
dlls/oleaut32/connpt.h
+1
-1
oleaut.c
dlls/oleaut32/oleaut.c
+4
-4
variant.h
dlls/oleaut32/variant.h
+3
-3
vartype.c
dlls/oleaut32/vartype.c
+1
-1
No files found.
dlls/oleaut32/connpt.h
View file @
84b101c5
...
...
@@ -19,6 +19,6 @@
#ifndef _CONNPT_H
#define _CONNPT_H
HRESULT
CreateConnectionPoint
(
IUnknown
*
pUnk
,
REFIID
riid
,
IConnectionPoint
**
pCP
)
DECLSPEC_HIDDEN
;
HRESULT
CreateConnectionPoint
(
IUnknown
*
pUnk
,
REFIID
riid
,
IConnectionPoint
**
pCP
);
#endif
/* _CONNPT_H */
dlls/oleaut32/oleaut.c
View file @
84b101c5
...
...
@@ -760,10 +760,10 @@ HRESULT WINAPI OleTranslateColor(
return
S_OK
;
}
extern
HRESULT
WINAPI
OLEAUTPS_DllGetClassObject
(
REFCLSID
,
REFIID
,
LPVOID
*
)
DECLSPEC_HIDDEN
;
extern
BOOL
WINAPI
OLEAUTPS_DllMain
(
HINSTANCE
,
DWORD
,
LPVOID
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
OLEAUTPS_DllRegisterServer
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
OLEAUTPS_DllUnregisterServer
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
OLEAUTPS_DllGetClassObject
(
REFCLSID
,
REFIID
,
LPVOID
*
);
extern
BOOL
WINAPI
OLEAUTPS_DllMain
(
HINSTANCE
,
DWORD
,
LPVOID
);
extern
HRESULT
WINAPI
OLEAUTPS_DllRegisterServer
(
void
);
extern
HRESULT
WINAPI
OLEAUTPS_DllUnregisterServer
(
void
);
extern
HRESULT
WINAPI
CreateProxyFromTypeInfo
(
ITypeInfo
*
typeinfo
,
IUnknown
*
outer
,
REFIID
iid
,
IRpcProxyBuffer
**
proxy
,
void
**
obj
);
...
...
dlls/oleaut32/variant.h
View file @
84b101c5
...
...
@@ -81,7 +81,7 @@
#define VAR_BOOLYESNO 0x0800
/* Convert bool to "Yes"/"No" */
#define VAR_NEGATIVE 0x1000
/* Number is negative */
unsigned
int
get_type_size
(
ULONG
*
,
VARTYPE
)
DECLSPEC_HIDDEN
;
HRESULT
VARIANT_ClearInd
(
VARIANTARG
*
)
DECLSPEC_HIDDEN
;
unsigned
int
get_type_size
(
ULONG
*
,
VARTYPE
);
HRESULT
VARIANT_ClearInd
(
VARIANTARG
*
);
BOOL
get_date_format
(
LCID
,
DWORD
,
const
SYSTEMTIME
*
,
const
WCHAR
*
,
WCHAR
*
,
int
)
DECLSPEC_HIDDEN
;
const
WCHAR
*
,
WCHAR
*
,
int
);
dlls/oleaut32/vartype.c
View file @
84b101c5
...
...
@@ -30,7 +30,7 @@
WINE_DEFAULT_DEBUG_CHANNEL
(
variant
);
extern
HMODULE
hProxyDll
DECLSPEC_HIDDEN
;
extern
HMODULE
hProxyDll
;
#define CY_MULTIPLIER 10000
/* 4 dp of precision */
#define CY_MULTIPLIER_F 10000.0
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment