Changeset 101934 in vbox
- Timestamp:
- Nov 7, 2023 11:47:59 AM (15 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/ipc/ipcd/daemon/src/ipcd.h
r1 r101934 39 39 #define IPCD_H__ 40 40 41 #include "ipcModule.h"42 41 #include "ipcMessage.h" 42 43 // 44 // a client handle is used to efficiently reference a client instance object 45 // used by the daemon to represent a connection with a particular client app. 46 // 47 // modules should treat it as an opaque type. 48 // 49 typedef class ipcClient *ipcClientHandle; 50 51 // 52 // enumeration functions may return FALSE to stop enumeration. 53 // 54 typedef PRBool (* ipcClientEnumFunc) (void *closure, ipcClientHandle client, PRUint32 clientID); 55 typedef PRBool (* ipcClientNameEnumFunc) (void *closure, ipcClientHandle client, const char *name); 56 typedef PRBool (* ipcClientTargetEnumFunc) (void *closure, ipcClientHandle client, const nsID &target); 43 57 44 58 //-----------------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.