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
f573cd10
Commit
f573cd10
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
oleacc: Remove DECLSPEC_HIDDEN usage.
parent
84b101c5
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
main.c
dlls/oleacc/main.c
+4
-4
oleacc_private.h
dlls/oleacc/oleacc_private.h
+5
-5
No files found.
dlls/oleacc/main.c
View file @
f573cd10
...
...
@@ -33,10 +33,10 @@ static const WCHAR lresult_atom_prefix[] = {'w','i','n','e','_','o','l','e','a',
#define NAVDIR_INTERNAL_HWND 10
DEFINE_GUID
(
SID_AccFromDAWrapper
,
0x33f139ee
,
0xe509
,
0x47f7
,
0xbf
,
0x39
,
0x83
,
0x76
,
0x44
,
0xf7
,
0x45
,
0x76
);
extern
HRESULT
WINAPI
OLEACC_DllGetClassObject
(
REFCLSID
,
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
extern
BOOL
WINAPI
OLEACC_DllMain
(
HINSTANCE
,
DWORD
,
void
*
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
OLEACC_DllRegisterServer
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
OLEACC_DllUnregisterServer
(
void
)
DECLSPEC_HIDDEN
;
extern
HRESULT
WINAPI
OLEACC_DllGetClassObject
(
REFCLSID
,
REFIID
,
void
**
);
extern
BOOL
WINAPI
OLEACC_DllMain
(
HINSTANCE
,
DWORD
,
void
*
);
extern
HRESULT
WINAPI
OLEACC_DllRegisterServer
(
void
);
extern
HRESULT
WINAPI
OLEACC_DllUnregisterServer
(
void
);
static
HINSTANCE
oleacc_handle
=
0
;
...
...
dlls/oleacc/oleacc_private.h
View file @
f573cd10
...
...
@@ -25,10 +25,10 @@ struct win_class_data {
BOOL
stub
;
const
void
*
vtbl
;
};
const
struct
win_class_data
*
find_class_data
(
HWND
,
const
struct
win_class_data
*
)
DECLSPEC_HIDDEN
;
const
struct
win_class_data
*
find_class_data
(
HWND
,
const
struct
win_class_data
*
);
HRESULT
create_client_object
(
HWND
,
const
IID
*
,
void
**
)
DECLSPEC_HIDDEN
;
HRESULT
create_window_object
(
HWND
,
const
IID
*
,
void
**
)
DECLSPEC_HIDDEN
;
HRESULT
get_accpropservices_factory
(
REFIID
,
void
**
)
DECLSPEC_HIDDEN
;
HRESULT
create_client_object
(
HWND
,
const
IID
*
,
void
**
);
HRESULT
create_window_object
(
HWND
,
const
IID
*
,
void
**
);
HRESULT
get_accpropservices_factory
(
REFIID
,
void
**
);
int
convert_child_id
(
VARIANT
*
v
)
DECLSPEC_HIDDEN
;
int
convert_child_id
(
VARIANT
*
v
);
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