rpcdispatcher.h

来自「the vxworks system kernel souce packeg.t」· C头文件 代码 · 共 45 行

H
45
字号
/* RpcDispatcher *//* Copyright (c) 1999 Wind River Systems, Inc. *//*modification history--------------------01f,20sep00,nel  Add changes made in T2 since branch.01e,28feb00,dbs  use correct ThreadOS method to get/set priority01d,09jul99,dbs  use new filenames01c,25jun99,dbs  add channel ID to stub msg01b,08jun99,aim  rework01a,27may99,aim  created*/#ifndef __INCRpcDispatcher_h#define __INCRpcDispatcher_h#include "RpcDispatchTable.h"#include "RpcPdu.h"#include "orpc.h"class RpcDispatcher    {  public:    virtual ~RpcDispatcher ();    RpcDispatcher (RpcDispatchTable* = 0);    bool supportsInterface (REFIID riid);    int dispatch (const RpcPdu& request, RpcPdu& reply, int channelId, REFIID iid);    bool priorityModify (REFCLSID clsid, const ORPCTHIS& orpcThis, int *pNewPriority);    void priorityRestore (int origPriority);      private:    RpcDispatchTable* m_dispatchTable;    // unsupported    RpcDispatcher (const RpcDispatcher& other);    RpcDispatcher& operator= (const RpcDispatcher& rhs);    };#endif // __INCRpcDispatcher_h

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?