1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Small fixes to MemoryMappedFile, AudioThumbnail.

This commit is contained in:
Julian Storer 2011-05-15 18:00:39 +01:00
parent df2526e33b
commit 2ecb4d3419
6 changed files with 94 additions and 96 deletions

View file

@ -19463,9 +19463,14 @@ public:
private:
void* address;
void* internal;
size_t length;
#if JUCE_WINDOWS
void* fileHandle;
#else
int fileHandle;
#endif
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MemoryMappedFile);
};