Fixed compile problems introduced with Linux port.

This commit is contained in:
Juan Carlos Luciani
2006-10-02 23:00:49 +00:00
parent 2631525040
commit 8778321ba9
3 changed files with 29 additions and 3 deletions

View File

@@ -82,7 +82,6 @@ typedef struct _RpcSession
#define bool BOOLEAN
#define true TRUE
#define false FALSE
#define long DWORD
#define AcquireModuleMutex WaitForSingleObjectEx(g_hModuleMutex, INFINITE, FALSE)
#define ReleaseModuleMutex ReleaseMutex(g_hModuleMutex)

View File

@@ -490,6 +490,33 @@ Rpc(
}
//++=======================================================================
CasaStatus
InitializeRpc(void)
//
// Arguments:
//
// Returns:
//
// Abstract:
//
// Notes:
//
// L2
//=======================================================================--
{
CasaStatus retStatus = CASA_STATUS_SUCCESS;
DbgTrace(1, "-InitializeRpc- Start\n", 0);
// Nothing to do for windows
DbgTrace(1, "-InitializeRpc- End, retStatus = %08X\n", retStatus);
return retStatus;
}
//++=======================================================================
//++=======================================================================
//++=======================================================================