mirror of
https://github.com/love2d/megasource.git
synced 2026-08-20 20:50:52 +02:00
Add PhysFS 2.0.3.
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
// UpdateProduce.h
|
||||
|
||||
#ifndef __UPDATE_PRODUCE_H
|
||||
#define __UPDATE_PRODUCE_H
|
||||
|
||||
#include "UpdatePair.h"
|
||||
|
||||
struct CUpdatePair2
|
||||
{
|
||||
// bool OperationIsCompress;
|
||||
bool NewData;
|
||||
bool NewProperties;
|
||||
|
||||
bool ExistInArchive;
|
||||
bool ExistOnDisk;
|
||||
bool IsAnti;
|
||||
int ArchiveItemIndex;
|
||||
int DirItemIndex;
|
||||
|
||||
bool NewNameIsDefined;
|
||||
UString NewName;
|
||||
|
||||
CUpdatePair2(): NewNameIsDefined(false) {}
|
||||
};
|
||||
|
||||
void UpdateProduce(
|
||||
const CObjectVector<CUpdatePair> &updatePairs,
|
||||
const NUpdateArchive::CActionSet &actionSet,
|
||||
CObjectVector<CUpdatePair2> &operationChain);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user