mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Fixed a minor AU build error and removed some old macros.
This commit is contained in:
parent
5419ebc520
commit
858a758aee
24 changed files with 1037 additions and 1172 deletions
|
|
@ -27,11 +27,10 @@
|
|||
// compiled on its own).
|
||||
#if JUCE_INCLUDED_FILE
|
||||
|
||||
#define U_ISOFS_SUPER_MAGIC (short) 0x9660 // linux/iso_fs.h
|
||||
#define U_MSDOS_SUPER_MAGIC (short) 0x4d44 // linux/msdos_fs.h
|
||||
#define U_NFS_SUPER_MAGIC (short) 0x6969 // linux/nfs_fs.h
|
||||
#define U_SMB_SUPER_MAGIC (short) 0x517B // linux/smb_fs.h
|
||||
|
||||
static const short U_ISOFS_SUPER_MAGIC = 0x9660; // linux/iso_fs.h
|
||||
static const short U_MSDOS_SUPER_MAGIC = 0x4d44; // linux/msdos_fs.h
|
||||
static const short U_NFS_SUPER_MAGIC = 0x6969; // linux/nfs_fs.h
|
||||
static const short U_SMB_SUPER_MAGIC = 0x517B; // linux/smb_fs.h
|
||||
|
||||
//==============================================================================
|
||||
void juce_getFileTimes (const String& fileName,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue