VirtualBox

Changeset 101934 in vbox


Ignore:
Timestamp:
Nov 7, 2023 11:47:59 AM (15 months ago)
Author:
vboxsync
Message:

libs/xpcom: Remove support for IPC modules which we never used (ipcModuleCount is always 0 and the directory where modules are looked for doesn't exist), bugref:10545 [fix]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/ipc/ipcd/daemon/src/ipcd.h

    r1 r101934  
    3939#define IPCD_H__
    4040
    41 #include "ipcModule.h"
    4241#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//
     49typedef class ipcClient *ipcClientHandle;
     50
     51//
     52// enumeration functions may return FALSE to stop enumeration.
     53//
     54typedef PRBool (* ipcClientEnumFunc)       (void *closure, ipcClientHandle client, PRUint32 clientID);
     55typedef PRBool (* ipcClientNameEnumFunc)   (void *closure, ipcClientHandle client, const char *name);
     56typedef PRBool (* ipcClientTargetEnumFunc) (void *closure, ipcClientHandle client, const nsID &target);
    4357
    4458//-----------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette