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
dee38488
Commit
dee38488
authored
Nov 08, 2023
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Nov 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sechost: Remove DECLSPEC_HIDDEN usage.
parent
83da83ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
service.c
dlls/sechost/service.c
+6
-6
No files found.
dlls/sechost/service.c
View file @
dee38488
...
...
@@ -212,32 +212,32 @@ static handle_t rpc_cstr_bind(RPC_CSTR str)
return
rpc_handle
;
}
DECLSPEC_HIDDEN
handle_t
__RPC_USER
MACHINE_HANDLEA_bind
(
MACHINE_HANDLEA
name
)
handle_t
__RPC_USER
MACHINE_HANDLEA_bind
(
MACHINE_HANDLEA
name
)
{
return
rpc_cstr_bind
(
(
RPC_CSTR
)
name
);
}
DECLSPEC_HIDDEN
void
__RPC_USER
MACHINE_HANDLEA_unbind
(
MACHINE_HANDLEA
name
,
handle_t
h
)
void
__RPC_USER
MACHINE_HANDLEA_unbind
(
MACHINE_HANDLEA
name
,
handle_t
h
)
{
RpcBindingFree
(
&
h
);
}
DECLSPEC_HIDDEN
handle_t
__RPC_USER
MACHINE_HANDLEW_bind
(
MACHINE_HANDLEW
name
)
handle_t
__RPC_USER
MACHINE_HANDLEW_bind
(
MACHINE_HANDLEW
name
)
{
return
rpc_wstr_bind
(
(
RPC_WSTR
)
name
);
}
DECLSPEC_HIDDEN
void
__RPC_USER
MACHINE_HANDLEW_unbind
(
MACHINE_HANDLEW
name
,
handle_t
h
)
void
__RPC_USER
MACHINE_HANDLEW_unbind
(
MACHINE_HANDLEW
name
,
handle_t
h
)
{
RpcBindingFree
(
&
h
);
}
DECLSPEC_HIDDEN
handle_t
__RPC_USER
SVCCTL_HANDLEW_bind
(
SVCCTL_HANDLEW
name
)
handle_t
__RPC_USER
SVCCTL_HANDLEW_bind
(
SVCCTL_HANDLEW
name
)
{
return
rpc_wstr_bind
(
(
RPC_WSTR
)
name
);
}
DECLSPEC_HIDDEN
void
__RPC_USER
SVCCTL_HANDLEW_unbind
(
SVCCTL_HANDLEW
name
,
handle_t
h
)
void
__RPC_USER
SVCCTL_HANDLEW_unbind
(
SVCCTL_HANDLEW
name
,
handle_t
h
)
{
RpcBindingFree
(
&
h
);
}
...
...
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