X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=blobdiff_plain;f=plugins%2Farchivepak%2Fpak.h;h=22051568dda1646c8282a8288cf2dcdae5ac1e8a;hp=7b0ff292ede35597ed4bea73bb3b7e6ad76a3913;hb=cd6613e5171544b68d4ae70546c90a15c99b22a5;hpb=cd7ff1a1798cfae5d14811a310f56d2f1908490b diff --git a/plugins/archivepak/pak.h b/plugins/archivepak/pak.h index 7b0ff292..22051568 100644 --- a/plugins/archivepak/pak.h +++ b/plugins/archivepak/pak.h @@ -22,16 +22,18 @@ #if !defined( INCLUDED_PAK_H ) #define INCLUDED_PAK_H -struct pakheader_t { - char magic[4]; // Name of the new WAD format ("PACK") - unsigned int diroffset; // Position of WAD directory from start of file - unsigned int dirsize; // Number of entries * 0x40 (64 char) +struct pakheader_t +{ + char magic[4]; // Name of the new WAD format ("PACK") + unsigned int diroffset; // Position of WAD directory from start of file + unsigned int dirsize; // Number of entries * 0x40 (64 char) }; -struct pakentry_t { - char filename[0x38]; // Name of the file, Unix style, with extension, 50 chars, padded with '\0'. - unsigned int offset; // Position of the entry in PACK file - unsigned int size; // Size of the entry in PACK file +struct pakentry_t +{ + char filename[0x38]; // Name of the file, Unix style, with extension, 50 chars, padded with '\0'. + unsigned int offset; // Position of the entry in PACK file + unsigned int size; // Size of the entry in PACK file }; #endif