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
PACKOFF.H
Package: vxdtdi.zip [view]
Upload User: he75757
Upload Date: 2007-01-04
Package Size: 36k
Code Size: 1k
Category:
TCP/IP Stack
Development Platform:
Visual C++
- /*++
- Copyright (c) 1990,91 Microsoft Corporation
- Module Name:
- packoff.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.
- packoff.h is the complement to packon.h. An inclusion of packoff.h
- MUST ALWAYS be preceded by an inclusion of packon.h, in one-to-one
- correspondence.
- Author:
- Chuck Lenzmeier (chuckl) 4-Mar-1990
- Revision History:
- 15-Apr-1991 JohnRo
- Created lint-able variant.
- --*/
- #if ! (defined(lint) || defined(_lint))
- #ifndef VXD
- #if i386
- #pragma warning(disable:4103)
- #endif
- #endif
- #pragma pack() // x86, MS compiler; MIPS, MIPS compiler
- #endif // ! (defined(lint) || defined(_lint))