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
PopPack.h
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 1k
Category:
Game Server Simulator
Development Platform:
C/C++
- /*++
- Copyright (c) Microsoft Corporation. All rights reserved.
- Module Name:
- poppack.h
- Abstract:
- This file turns packing of structures off. (That is, it enables
- automatic alignment of structure fields.) An include file is needed
- because various compilers do this in different ways.
- poppack.h is the complement to pshpack?.h. An inclusion of poppack.h
- MUST ALWAYS be preceded by an inclusion of one of pshpack?.h, in one-to-one
- correspondence.
- For Microsoft compatible compilers, this file uses the pop option
- to the pack pragma so that it can restore the previous saved by the
- pshpack?.h include file.
- --*/
- #if ! (defined(lint) || defined(RC_INVOKED))
- #if ( _MSC_VER >= 800 && !defined(_M_I86)) || defined(_PUSHPOP_SUPPORTED)
- #pragma warning(disable:4103)
- #if !(defined( MIDL_PASS )) || defined( __midl )
- #pragma pack(pop)
- #else
- #pragma pack()
- #endif
- #else
- #pragma pack()
- #endif
- #endif // ! (defined(lint) || defined(RC_INVOKED))