mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 13:52:30 +00:00
c2d0d784c7
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
40 lines
876 B
Diff
40 lines
876 B
Diff
Index: rpcss_main.c
|
|
===================================================================
|
|
--- rpcss_main.c
|
|
+++ rpcss_main.c
|
|
@@ -58,11 +58,11 @@
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(ole);
|
|
|
|
-static HANDLE exit_event;
|
|
+HANDLE exit_event;
|
|
|
|
//extern HANDLE __wine_make_process_system(void);
|
|
|
|
-static BOOL RPCSS_Initialize(void)
|
|
+BOOL RPCSS_Initialize(void)
|
|
{
|
|
static unsigned short irot_protseq[] = IROT_PROTSEQ;
|
|
static unsigned short irot_endpoint[] = IROT_ENDPOINT;
|
|
@@ -116,7 +116,7 @@
|
|
|
|
/* returns false if we discover at the last moment that we
|
|
aren't ready to terminate */
|
|
-static BOOL RPCSS_Shutdown(void)
|
|
+BOOL RPCSS_Shutdown(void)
|
|
{
|
|
RpcMgmtStopServerListening(NULL);
|
|
RpcServerUnregisterIf(epm_v3_0_s_ifspec, NULL, TRUE);
|
|
@@ -127,6 +127,7 @@
|
|
return TRUE;
|
|
}
|
|
|
|
+#if 0
|
|
int main( int argc, char **argv )
|
|
{
|
|
/*
|
|
@@ -142,3 +143,4 @@
|
|
|
|
return 0;
|
|
}
|
|
+#endif
|