1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-29 02:40:05 +00:00

New class: MemoryMappedFile.

This commit is contained in:
Julian Storer 2011-05-12 21:28:05 +01:00
parent 981ef9313c
commit 3213bec481
23 changed files with 556 additions and 66 deletions

View file

@ -53,6 +53,7 @@ BEGIN_JUCE_NAMESPACE
#include "../../io/files/juce_FileOutputStream.h"
#include "../../io/files/juce_NamedPipe.h"
#include "../../io/files/juce_DirectoryIterator.h"
#include "../../io/files/juce_MemoryMappedFile.h"
#include "../../io/network/juce_URL.h"
#include "../../io/network/juce_MACAddress.h"
#include "../../core/juce_PlatformUtilities.h"

View file

@ -43,6 +43,7 @@
#include <sys/statfs.h>
#include <sys/ptrace.h>
#include <sys/sysinfo.h>
#include <sys/mman.h>
#include <pwd.h>
#include <dirent.h>
#include <fnmatch.h>