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
OpaqueUserData.h
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 2k
Category:
Game Server Simulator
Development Platform:
C/C++
- /********************************************************************
- created: 2003/02/14
- file base: OpaqueUserData
- file ext: h
- author: liupeng
- purpose:
- *********************************************************************/
- #ifndef __INCLUDE_OPAQUEUSERDATA_H__
- #define __INCLUDE_OPAQUEUSERDATA_H__
- #if defined (_MSC_VER) && (_MSC_VER >= 1020)
- #pragma once
- #endif
- /*
- * Define Win64 interfaces if not already defined
- */
- /*
- * InterlockedExchangePointer
- */
- #ifndef InterlockedExchangePointer
- #define InterlockedExchangePointer(Target, Value)
- (PVOID)InterlockedExchange((PLONG)(Target), (LONG)(Value))
- #endif
- /*
- * namespace OnlineGameLib
- */
- namespace OnlineGameLib {
- class COpaqueUserData
- {
- public:
- /*
- * Attempted to take the address of a non-lvalue
- */
- void *GetUserPtr() const
- {
- return InterlockedExchangePointer( &(const_cast<void *>(m_pUserData)), m_pUserData );
- }
- /*
- * Ignoring return value of function
- * Expected void type, assignment, increment or decrement
- */
- void SetUserPtr(void *pData)
- {
- InterlockedExchangePointer( &m_pUserData, pData );
- }
- unsigned long GetUserData() const
- {
- return reinterpret_cast<unsigned long>( GetUserPtr() );
- }
- void SetUserData( unsigned long data )
- {
- SetUserPtr( reinterpret_cast<void *>( data ) );
- }
- protected:
- COpaqueUserData() : m_pUserData(0)
- {
- }
- ~COpaqueUserData()
- {
- m_pUserData = 0;
- }
- private:
- void *m_pUserData;
- /*
- * No copies do not implement
- */
- COpaqueUserData( const COpaqueUserData &rhs );
- COpaqueUserData &operator=( const COpaqueUserData &rhs );
- };
- } // End of namespace OnlineGameLib
- #endif //__INCLUDE_OPAQUEUSERDATA_H__