⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rpcdispatcher.h

📁 VXWORKS源代码
💻 H
字号:
/* 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -