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
7810e231
Commit
7810e231
authored
Apr 27, 2011
by
Marcus Meissner
Committed by
Alexandre Julliard
Apr 27, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
advapi32: Mark some internal symbols as hidden.
parent
29d6fbc3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
advapi32_misc.h
dlls/advapi32/advapi32_misc.h
+5
-5
crypt.h
dlls/advapi32/crypt.h
+2
-2
service.c
dlls/advapi32/service.c
+2
-2
No files found.
dlls/advapi32/advapi32_misc.h
View file @
7810e231
...
...
@@ -20,11 +20,11 @@
#ifndef __WINE_ADVAPI32MISC_H
#define __WINE_ADVAPI32MISC_H
const
char
*
debugstr_sid
(
PSID
sid
);
BOOL
ADVAPI_IsLocalComputer
(
LPCWSTR
ServerName
);
BOOL
ADVAPI_GetComputerSid
(
PSID
sid
);
const
char
*
debugstr_sid
(
PSID
sid
)
DECLSPEC_HIDDEN
;
BOOL
ADVAPI_IsLocalComputer
(
LPCWSTR
ServerName
)
DECLSPEC_HIDDEN
;
BOOL
ADVAPI_GetComputerSid
(
PSID
sid
)
DECLSPEC_HIDDEN
;
BOOL
lookup_local_wellknown_name
(
const
LSA_UNICODE_STRING
*
,
PSID
,
LPDWORD
,
LPWSTR
,
LPDWORD
,
PSID_NAME_USE
,
BOOL
*
);
BOOL
lookup_local_user_name
(
const
LSA_UNICODE_STRING
*
,
PSID
,
LPDWORD
,
LPWSTR
,
LPDWORD
,
PSID_NAME_USE
,
BOOL
*
);
BOOL
lookup_local_wellknown_name
(
const
LSA_UNICODE_STRING
*
,
PSID
,
LPDWORD
,
LPWSTR
,
LPDWORD
,
PSID_NAME_USE
,
BOOL
*
)
DECLSPEC_HIDDEN
;
BOOL
lookup_local_user_name
(
const
LSA_UNICODE_STRING
*
,
PSID
,
LPDWORD
,
LPWSTR
,
LPDWORD
,
PSID_NAME_USE
,
BOOL
*
)
DECLSPEC_HIDDEN
;
#endif
/* __WINE_ADVAPI32MISC_H */
dlls/advapi32/crypt.h
View file @
7810e231
...
...
@@ -87,9 +87,9 @@ typedef struct tagCRYPTHASH
#define MAXPROVTYPES 999
extern
unsigned
char
*
CRYPT_DEShash
(
unsigned
char
*
dst
,
const
unsigned
char
*
key
,
const
unsigned
char
*
src
);
const
unsigned
char
*
src
)
DECLSPEC_HIDDEN
;
extern
unsigned
char
*
CRYPT_DESunhash
(
unsigned
char
*
dst
,
const
unsigned
char
*
key
,
const
unsigned
char
*
src
);
const
unsigned
char
*
src
)
DECLSPEC_HIDDEN
;
struct
ustring
{
DWORD
Length
;
...
...
dlls/advapi32/service.c
View file @
7810e231
...
...
@@ -143,7 +143,7 @@ static inline DWORD multisz_cb(LPCWSTR wmultisz)
* RPC connection with services.exe
*/
handle_t
__RPC_USER
MACHINE_HANDLEW_bind
(
MACHINE_HANDLEW
MachineName
)
DECLSPEC_HIDDEN
handle_t
__RPC_USER
MACHINE_HANDLEW_bind
(
MACHINE_HANDLEW
MachineName
)
{
WCHAR
transport
[]
=
SVCCTL_TRANSPORT
;
WCHAR
endpoint
[]
=
SVCCTL_ENDPOINT
;
...
...
@@ -170,7 +170,7 @@ handle_t __RPC_USER MACHINE_HANDLEW_bind(MACHINE_HANDLEW MachineName)
return
rpc_handle
;
}
void
__RPC_USER
MACHINE_HANDLEW_unbind
(
MACHINE_HANDLEW
MachineName
,
handle_t
h
)
DECLSPEC_HIDDEN
void
__RPC_USER
MACHINE_HANDLEW_unbind
(
MACHINE_HANDLEW
MachineName
,
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