diff options
Diffstat (limited to 'libpit/Source/libpit.h')
-rwxr-xr-x | libpit/Source/libpit.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libpit/Source/libpit.h b/libpit/Source/libpit.h index 636f1e1..fa4a534 100755 --- a/libpit/Source/libpit.h +++ b/libpit/Source/libpit.h @@ -21,6 +21,10 @@ #ifndef LIBPIT_H #define LIBPIT_H +#ifdef WIN32 +#pragma warning(disable : 4996) +#endif + // C Standard Library #include <string.h> #include <vector> @@ -74,6 +78,8 @@ namespace libpit PitEntry(); ~PitEntry(); + bool Matches(const PitEntry *otherPitEntry) const; + bool GetUnused(void) const { return unused; @@ -285,6 +291,8 @@ namespace libpit bool Unpack(const unsigned char *data); void Pack(unsigned char *data) const; + bool Matches(const PitData *otherPitData) const; + void Clear(void); PitEntry *GetEntry(unsigned int index); |