Mozilla/mozilla/modules/ipc/daemon/ipcdPrivate.h
darin%netscape.com 27020b681d IPC module methods should not depend on ipcMessage class.
git-svn-id: svn://10.0.0.236/trunk@133530 18797224-902f-48f8-a5cc-f745e15eee43
2002-11-10 06:21:24 +00:00

24 lines
467 B
C++

#ifndef ipcdPrivate_h__
#define ipcdPrivate_h__
class ipcClient;
//
// upper limit on the number of active connections
// XXX may want to make this more dynamic
//
#define IPC_MAX_CLIENTS 100
//
// array of connected clients
//
extern ipcClient *ipcClients;
extern int ipcClientCount;
//
// platform specific send message function, takes ownership of |msg|.
//
PRStatus IPC_PlatformSendMsg(ipcClient *client, ipcMessage *msg);
#endif // !ipcdPrivate_h__