diff options
| author | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:31:46 -0800 |
|---|---|---|
| committer | Jørgen P. Tjernø <[email protected]> | 2013-12-02 19:46:31 -0800 |
| commit | f56bb35301836e56582a575a75864392a0177875 (patch) | |
| tree | de61ddd39de3e7df52759711950b4c288592f0dc /mp/src/public/zip_uncompressed.h | |
| parent | Mark some more files as text. (diff) | |
| download | source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.tar.xz source-sdk-2013-f56bb35301836e56582a575a75864392a0177875.zip | |
Fix line endings. WHAMMY.
Diffstat (limited to 'mp/src/public/zip_uncompressed.h')
| -rw-r--r-- | mp/src/public/zip_uncompressed.h | 226 |
1 files changed, 113 insertions, 113 deletions
diff --git a/mp/src/public/zip_uncompressed.h b/mp/src/public/zip_uncompressed.h index d4eb8fd5..0c8a45e6 100644 --- a/mp/src/public/zip_uncompressed.h +++ b/mp/src/public/zip_uncompressed.h @@ -1,113 +1,113 @@ -//========= Copyright Valve Corporation, All rights reserved. ============//
-//
-// Purpose:
-//
-//=============================================================================//
-
-#ifndef ZIP_UNCOMPRESSED_H
-#define ZIP_UNCOMPRESSED_H
-#ifdef _WIN32
-#pragma once
-#endif
-
-#include "datamap.h"
-
-#define PKID( a, b ) (((b)<<24)|((a)<<16)|('K'<<8)|'P')
-
-#pragma pack(1)
-
-struct ZIP_EndOfCentralDirRecord
-{
- DECLARE_BYTESWAP_DATADESC();
- unsigned int signature; // 4 bytes PK56
- unsigned short numberOfThisDisk; // 2 bytes
- unsigned short numberOfTheDiskWithStartOfCentralDirectory; // 2 bytes
- unsigned short nCentralDirectoryEntries_ThisDisk; // 2 bytes
- unsigned short nCentralDirectoryEntries_Total; // 2 bytes
- unsigned int centralDirectorySize; // 4 bytes
- unsigned int startOfCentralDirOffset; // 4 bytes
- unsigned short commentLength; // 2 bytes
- // zip file comment follows
-};
-
-struct ZIP_FileHeader
-{
- DECLARE_BYTESWAP_DATADESC();
- unsigned int signature; // 4 bytes PK12
- unsigned short versionMadeBy; // version made by 2 bytes
- unsigned short versionNeededToExtract; // version needed to extract 2 bytes
- unsigned short flags; // general purpose bit flag 2 bytes
- unsigned short compressionMethod; // compression method 2 bytes
- unsigned short lastModifiedTime; // last mod file time 2 bytes
- unsigned short lastModifiedDate; // last mod file date 2 bytes
- unsigned int crc32; // crc-32 4 bytes
- unsigned int compressedSize; // compressed size 4 bytes
- unsigned int uncompressedSize; // uncompressed size 4 bytes
- unsigned short fileNameLength; // file name length 2 bytes
- unsigned short extraFieldLength; // extra field length 2 bytes
- unsigned short fileCommentLength; // file comment length 2 bytes
- unsigned short diskNumberStart; // disk number start 2 bytes
- unsigned short internalFileAttribs; // internal file attributes 2 bytes
- unsigned int externalFileAttribs; // external file attributes 4 bytes
- unsigned int relativeOffsetOfLocalHeader; // relative offset of local header 4 bytes
- // file name (variable size)
- // extra field (variable size)
- // file comment (variable size)
-};
-
-struct ZIP_LocalFileHeader
-{
- DECLARE_BYTESWAP_DATADESC();
- unsigned int signature; //local file header signature 4 bytes PK34
- unsigned short versionNeededToExtract; // version needed to extract 2 bytes
- unsigned short flags; // general purpose bit flag 2 bytes
- unsigned short compressionMethod; // compression method 2 bytes
- unsigned short lastModifiedTime; // last mod file time 2 bytes
- unsigned short lastModifiedDate; // last mod file date 2 bytes
- unsigned int crc32; // crc-32 4 bytes
- unsigned int compressedSize; // compressed size 4 bytes
- unsigned int uncompressedSize; // uncompressed size 4 bytes
- unsigned short fileNameLength; // file name length 2 bytes
- unsigned short extraFieldLength; // extra field length 2 bytes
- // file name (variable size)
- // extra field (variable size)
-};
-
-//=============================================================================//
-// Valve Non standard Extension, Preload Section
-// An optional first file in an aligned zip that can be loaded into ram and
-// used by the FileSystem to supply header data rather than disk.
-// Is is an optimization to prevent the large of amount of small I/O performed
-/// by the map loading process.
-//=============================================================================//
-
-#define PRELOAD_SECTION_NAME "__preload_section.pre"
-#define PRELOAD_HDR_VERSION 3
-#define XZIP_COMMENT_LENGTH 32
-#define INVALID_PRELOAD_ENTRY ( (unsigned short)-1 )
-
-struct ZIP_PreloadHeader
-{
- DECLARE_BYTESWAP_DATADESC();
- unsigned int Version; // VERSION
- unsigned int DirectoryEntries; // Number of zip directory entries.
- unsigned int PreloadDirectoryEntries; // Number of preloaded directory entries (equal or less than the zip dir).
- unsigned int Alignment; // File alignment of the zip
-};
-
-struct ZIP_PreloadDirectoryEntry
-{
- DECLARE_BYTESWAP_DATADESC();
- unsigned int Length; // Length of the file's preload data in bytes
- unsigned int DataOffset; // Offset the file data in the .zip, relative to the logical beginning of the preload file.
-};
-
-struct ZIP_PreloadRemapTable
-{
- DECLARE_BYTESWAP_DATADESC();
- unsigned short PreloadIndex; // Index into preload directory, entry marked invalid if no preload entry present
-};
-
-#pragma pack()
-
-#endif // ZIP_UNCOMPRESSED_H
+//========= Copyright Valve Corporation, All rights reserved. ============// +// +// Purpose: +// +//=============================================================================// + +#ifndef ZIP_UNCOMPRESSED_H +#define ZIP_UNCOMPRESSED_H +#ifdef _WIN32 +#pragma once +#endif + +#include "datamap.h" + +#define PKID( a, b ) (((b)<<24)|((a)<<16)|('K'<<8)|'P') + +#pragma pack(1) + +struct ZIP_EndOfCentralDirRecord +{ + DECLARE_BYTESWAP_DATADESC(); + unsigned int signature; // 4 bytes PK56 + unsigned short numberOfThisDisk; // 2 bytes + unsigned short numberOfTheDiskWithStartOfCentralDirectory; // 2 bytes + unsigned short nCentralDirectoryEntries_ThisDisk; // 2 bytes + unsigned short nCentralDirectoryEntries_Total; // 2 bytes + unsigned int centralDirectorySize; // 4 bytes + unsigned int startOfCentralDirOffset; // 4 bytes + unsigned short commentLength; // 2 bytes + // zip file comment follows +}; + +struct ZIP_FileHeader +{ + DECLARE_BYTESWAP_DATADESC(); + unsigned int signature; // 4 bytes PK12 + unsigned short versionMadeBy; // version made by 2 bytes + unsigned short versionNeededToExtract; // version needed to extract 2 bytes + unsigned short flags; // general purpose bit flag 2 bytes + unsigned short compressionMethod; // compression method 2 bytes + unsigned short lastModifiedTime; // last mod file time 2 bytes + unsigned short lastModifiedDate; // last mod file date 2 bytes + unsigned int crc32; // crc-32 4 bytes + unsigned int compressedSize; // compressed size 4 bytes + unsigned int uncompressedSize; // uncompressed size 4 bytes + unsigned short fileNameLength; // file name length 2 bytes + unsigned short extraFieldLength; // extra field length 2 bytes + unsigned short fileCommentLength; // file comment length 2 bytes + unsigned short diskNumberStart; // disk number start 2 bytes + unsigned short internalFileAttribs; // internal file attributes 2 bytes + unsigned int externalFileAttribs; // external file attributes 4 bytes + unsigned int relativeOffsetOfLocalHeader; // relative offset of local header 4 bytes + // file name (variable size) + // extra field (variable size) + // file comment (variable size) +}; + +struct ZIP_LocalFileHeader +{ + DECLARE_BYTESWAP_DATADESC(); + unsigned int signature; //local file header signature 4 bytes PK34 + unsigned short versionNeededToExtract; // version needed to extract 2 bytes + unsigned short flags; // general purpose bit flag 2 bytes + unsigned short compressionMethod; // compression method 2 bytes + unsigned short lastModifiedTime; // last mod file time 2 bytes + unsigned short lastModifiedDate; // last mod file date 2 bytes + unsigned int crc32; // crc-32 4 bytes + unsigned int compressedSize; // compressed size 4 bytes + unsigned int uncompressedSize; // uncompressed size 4 bytes + unsigned short fileNameLength; // file name length 2 bytes + unsigned short extraFieldLength; // extra field length 2 bytes + // file name (variable size) + // extra field (variable size) +}; + +//=============================================================================// +// Valve Non standard Extension, Preload Section +// An optional first file in an aligned zip that can be loaded into ram and +// used by the FileSystem to supply header data rather than disk. +// Is is an optimization to prevent the large of amount of small I/O performed +/// by the map loading process. +//=============================================================================// + +#define PRELOAD_SECTION_NAME "__preload_section.pre" +#define PRELOAD_HDR_VERSION 3 +#define XZIP_COMMENT_LENGTH 32 +#define INVALID_PRELOAD_ENTRY ( (unsigned short)-1 ) + +struct ZIP_PreloadHeader +{ + DECLARE_BYTESWAP_DATADESC(); + unsigned int Version; // VERSION + unsigned int DirectoryEntries; // Number of zip directory entries. + unsigned int PreloadDirectoryEntries; // Number of preloaded directory entries (equal or less than the zip dir). + unsigned int Alignment; // File alignment of the zip +}; + +struct ZIP_PreloadDirectoryEntry +{ + DECLARE_BYTESWAP_DATADESC(); + unsigned int Length; // Length of the file's preload data in bytes + unsigned int DataOffset; // Offset the file data in the .zip, relative to the logical beginning of the preload file. +}; + +struct ZIP_PreloadRemapTable +{ + DECLARE_BYTESWAP_DATADESC(); + unsigned short PreloadIndex; // Index into preload directory, entry marked invalid if no preload entry present +}; + +#pragma pack() + +#endif // ZIP_UNCOMPRESSED_H |