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
3bc14d91
Commit
3bc14d91
authored
Jan 24, 2007
by
Andrew Talbot
Committed by
Alexandre Julliard
Jan 25, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Declare some functions static.
parent
399844e9
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
10 deletions
+8
-10
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+6
-4
rpc_binding.h
dlls/rpcrt4/rpc_binding.h
+0
-4
rpc_message.c
dlls/rpcrt4/rpc_message.c
+1
-1
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+1
-1
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
3bc14d91
...
@@ -110,7 +110,7 @@ static RPC_STATUS RPCRT4_AllocBinding(RpcBinding** Binding, BOOL server)
...
@@ -110,7 +110,7 @@ static RPC_STATUS RPCRT4_AllocBinding(RpcBinding** Binding, BOOL server)
return
RPC_S_OK
;
return
RPC_S_OK
;
}
}
RPC_STATUS
RPCRT4_CreateBindingA
(
RpcBinding
**
Binding
,
BOOL
server
,
LPSTR
Protseq
)
static
RPC_STATUS
RPCRT4_CreateBindingA
(
RpcBinding
**
Binding
,
BOOL
server
,
LPSTR
Protseq
)
{
{
RpcBinding
*
NewBinding
;
RpcBinding
*
NewBinding
;
...
@@ -123,7 +123,7 @@ RPC_STATUS RPCRT4_CreateBindingA(RpcBinding** Binding, BOOL server, LPSTR Protse
...
@@ -123,7 +123,7 @@ RPC_STATUS RPCRT4_CreateBindingA(RpcBinding** Binding, BOOL server, LPSTR Protse
return
RPC_S_OK
;
return
RPC_S_OK
;
}
}
RPC_STATUS
RPCRT4_CreateBindingW
(
RpcBinding
**
Binding
,
BOOL
server
,
LPWSTR
Protseq
)
static
RPC_STATUS
RPCRT4_CreateBindingW
(
RpcBinding
**
Binding
,
BOOL
server
,
LPWSTR
Protseq
)
{
{
RpcBinding
*
NewBinding
;
RpcBinding
*
NewBinding
;
...
@@ -136,7 +136,8 @@ RPC_STATUS RPCRT4_CreateBindingW(RpcBinding** Binding, BOOL server, LPWSTR Prots
...
@@ -136,7 +136,8 @@ RPC_STATUS RPCRT4_CreateBindingW(RpcBinding** Binding, BOOL server, LPWSTR Prots
return
RPC_S_OK
;
return
RPC_S_OK
;
}
}
RPC_STATUS
RPCRT4_CompleteBindingA
(
RpcBinding
*
Binding
,
LPSTR
NetworkAddr
,
LPSTR
Endpoint
,
LPSTR
NetworkOptions
)
static
RPC_STATUS
RPCRT4_CompleteBindingA
(
RpcBinding
*
Binding
,
LPSTR
NetworkAddr
,
LPSTR
Endpoint
,
LPSTR
NetworkOptions
)
{
{
TRACE
(
"(RpcBinding == ^%p, NetworkAddr == %s, EndPoint == %s, NetworkOptions == %s)
\n
"
,
Binding
,
TRACE
(
"(RpcBinding == ^%p, NetworkAddr == %s, EndPoint == %s, NetworkOptions == %s)
\n
"
,
Binding
,
debugstr_a
(
NetworkAddr
),
debugstr_a
(
Endpoint
),
debugstr_a
(
NetworkOptions
));
debugstr_a
(
NetworkAddr
),
debugstr_a
(
Endpoint
),
debugstr_a
(
NetworkOptions
));
...
@@ -156,7 +157,8 @@ RPC_STATUS RPCRT4_CompleteBindingA(RpcBinding* Binding, LPSTR NetworkAddr, LPST
...
@@ -156,7 +157,8 @@ RPC_STATUS RPCRT4_CompleteBindingA(RpcBinding* Binding, LPSTR NetworkAddr, LPST
return
RPC_S_OK
;
return
RPC_S_OK
;
}
}
RPC_STATUS
RPCRT4_CompleteBindingW
(
RpcBinding
*
Binding
,
LPWSTR
NetworkAddr
,
LPWSTR
Endpoint
,
LPWSTR
NetworkOptions
)
static
RPC_STATUS
RPCRT4_CompleteBindingW
(
RpcBinding
*
Binding
,
LPWSTR
NetworkAddr
,
LPWSTR
Endpoint
,
LPWSTR
NetworkOptions
)
{
{
TRACE
(
"(RpcBinding == ^%p, NetworkAddr == %s, EndPoint == %s, NetworkOptions == %s)
\n
"
,
Binding
,
TRACE
(
"(RpcBinding == ^%p, NetworkAddr == %s, EndPoint == %s, NetworkOptions == %s)
\n
"
,
Binding
,
debugstr_w
(
NetworkAddr
),
debugstr_w
(
Endpoint
),
debugstr_w
(
NetworkOptions
));
debugstr_w
(
NetworkAddr
),
debugstr_w
(
Endpoint
),
debugstr_w
(
NetworkOptions
));
...
...
dlls/rpcrt4/rpc_binding.h
View file @
3bc14d91
...
@@ -125,10 +125,6 @@ RPC_STATUS RPCRT4_OpenClientConnection(RpcConnection* Connection);
...
@@ -125,10 +125,6 @@ RPC_STATUS RPCRT4_OpenClientConnection(RpcConnection* Connection);
RPC_STATUS
RPCRT4_CloseConnection
(
RpcConnection
*
Connection
);
RPC_STATUS
RPCRT4_CloseConnection
(
RpcConnection
*
Connection
);
RPC_STATUS
RPCRT4_SpawnConnection
(
RpcConnection
**
Connection
,
RpcConnection
*
OldConnection
);
RPC_STATUS
RPCRT4_SpawnConnection
(
RpcConnection
**
Connection
,
RpcConnection
*
OldConnection
);
RPC_STATUS
RPCRT4_CreateBindingA
(
RpcBinding
**
Binding
,
BOOL
server
,
LPSTR
Protseq
);
RPC_STATUS
RPCRT4_CreateBindingW
(
RpcBinding
**
Binding
,
BOOL
server
,
LPWSTR
Protseq
);
RPC_STATUS
RPCRT4_CompleteBindingA
(
RpcBinding
*
Binding
,
LPSTR
NetworkAddr
,
LPSTR
Endpoint
,
LPSTR
NetworkOptions
);
RPC_STATUS
RPCRT4_CompleteBindingW
(
RpcBinding
*
Binding
,
LPWSTR
NetworkAddr
,
LPWSTR
Endpoint
,
LPWSTR
NetworkOptions
);
RPC_STATUS
RPCRT4_ResolveBinding
(
RpcBinding
*
Binding
,
LPSTR
Endpoint
);
RPC_STATUS
RPCRT4_ResolveBinding
(
RpcBinding
*
Binding
,
LPSTR
Endpoint
);
RPC_STATUS
RPCRT4_SetBindingObject
(
RpcBinding
*
Binding
,
UUID
*
ObjectUuid
);
RPC_STATUS
RPCRT4_SetBindingObject
(
RpcBinding
*
Binding
,
UUID
*
ObjectUuid
);
RPC_STATUS
RPCRT4_MakeBinding
(
RpcBinding
**
Binding
,
RpcConnection
*
Connection
);
RPC_STATUS
RPCRT4_MakeBinding
(
RpcBinding
**
Binding
,
RpcConnection
*
Connection
);
...
...
dlls/rpcrt4/rpc_message.c
View file @
3bc14d91
...
@@ -200,7 +200,7 @@ RpcPktHdr *RPCRT4_BuildBindHeader(unsigned long DataRepresentation,
...
@@ -200,7 +200,7 @@ RpcPktHdr *RPCRT4_BuildBindHeader(unsigned long DataRepresentation,
return
header
;
return
header
;
}
}
RpcPktHdr
*
RPCRT4_BuildAuthHeader
(
unsigned
long
DataRepresentation
)
static
RpcPktHdr
*
RPCRT4_BuildAuthHeader
(
unsigned
long
DataRepresentation
)
{
{
RpcPktHdr
*
header
;
RpcPktHdr
*
header
;
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
3bc14d91
...
@@ -655,7 +655,7 @@ HRESULT WINAPI DllRegisterServer( void )
...
@@ -655,7 +655,7 @@ HRESULT WINAPI DllRegisterServer( void )
return
S_OK
;
return
S_OK
;
}
}
BOOL
RPCRT4_StartRPCSS
(
void
)
static
BOOL
RPCRT4_StartRPCSS
(
void
)
{
{
PROCESS_INFORMATION
pi
;
PROCESS_INFORMATION
pi
;
STARTUPINFOA
si
;
STARTUPINFOA
si
;
...
...
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