mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-21 07:43:59 -07:00
- aligned_allocator.h: use _mm_malloc instead of _aligned_malloc (somewhat more portable) bits: fix incorrect handling of bit_mask(0) - archive_zip.cpp: fix ArchiveWriter_Zip (wasn't opening its output file, ECDR record wasn't at end of file due to padding) - io_align.cpp: move routines to header (DLL export) - wdbg_heap.cpp: avoid crash in report hook if CRT memory block is invalid This was SVN commit r6030.
19 lines
600 B
C
19 lines
600 B
C
/**
|
|
* =========================================================================
|
|
* File : archive_zip.h
|
|
* Project : 0 A.D.
|
|
* Description : archive backend for Zip files.
|
|
* =========================================================================
|
|
*/
|
|
|
|
// license: GPL; see lib/license.txt
|
|
|
|
#ifndef INCLUDED_ARCHIVE_ZIP
|
|
#define INCLUDED_ARCHIVE_ZIP
|
|
|
|
#include "archive.h"
|
|
|
|
LIB_API PIArchiveReader CreateArchiveReader_Zip(const Path& archivePathname);
|
|
LIB_API PIArchiveWriter CreateArchiveWriter_Zip(const Path& archivePathname);
|
|
|
|
#endif // #ifndef INCLUDED_ARCHIVE_ZIP
|