Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
RpcDispatcher.h
Package: vxwork_src.rar [view]
Upload User: nvosite88
Upload Date: 2007-01-17
Package Size: 4983k
Code Size: 1k
Category:
VxWorks
Development Platform:
C/C++
- /* 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 priority
- 01d,09jul99,dbs use new filenames
- 01c,25jun99,dbs add channel ID to stub msg
- 01b,08jun99,aim rework
- 01a,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