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

Updated the format of the header include guard macros.

This commit is contained in:
jules 2013-07-17 16:26:35 +01:00
parent f196f88330
commit 5a1112ab94
440 changed files with 1670 additions and 2446 deletions

View file

@ -22,8 +22,8 @@
==============================================================================
*/
#ifndef __JUCE_BLOWFISH_JUCEHEADER__
#define __JUCE_BLOWFISH_JUCEHEADER__
#ifndef JUCE_BLOWFISH_H_INCLUDED
#define JUCE_BLOWFISH_H_INCLUDED
//==============================================================================
@ -69,4 +69,4 @@ private:
};
#endif // __JUCE_BLOWFISH_JUCEHEADER__
#endif // JUCE_BLOWFISH_H_INCLUDED

View file

@ -22,8 +22,8 @@
==============================================================================
*/
#ifndef __JUCE_PRIMES_JUCEHEADER__
#define __JUCE_PRIMES_JUCEHEADER__
#ifndef JUCE_PRIMES_H_INCLUDED
#define JUCE_PRIMES_H_INCLUDED
//==============================================================================
@ -70,4 +70,4 @@ private:
};
#endif // __JUCE_PRIMES_JUCEHEADER__
#endif // JUCE_PRIMES_H_INCLUDED

View file

@ -22,8 +22,8 @@
==============================================================================
*/
#ifndef __JUCE_RSAKEY_JUCEHEADER__
#define __JUCE_RSAKEY_JUCEHEADER__
#ifndef JUCE_RSAKEY_H_INCLUDED
#define JUCE_RSAKEY_H_INCLUDED
//==============================================================================
@ -111,4 +111,4 @@ private:
};
#endif // __JUCE_RSAKEY_JUCEHEADER__
#endif // JUCE_RSAKEY_H_INCLUDED

View file

@ -22,8 +22,8 @@
==============================================================================
*/
#ifndef __JUCE_MD5_JUCEHEADER__
#define __JUCE_MD5_JUCEHEADER__
#ifndef JUCE_MD5_H_INCLUDED
#define JUCE_MD5_H_INCLUDED
//==============================================================================
/**
@ -111,4 +111,4 @@ private:
};
#endif // __JUCE_MD5_JUCEHEADER__
#endif // JUCE_MD5_H_INCLUDED

View file

@ -22,8 +22,8 @@
==============================================================================
*/
#ifndef __JUCE_SHA256_JUCEHEADER__
#define __JUCE_SHA256_JUCEHEADER__
#ifndef JUCE_SHA256_H_INCLUDED
#define JUCE_SHA256_H_INCLUDED
//==============================================================================
@ -104,4 +104,4 @@ private:
};
#endif // __JUCE_SHA256_JUCEHEADER__
#endif // JUCE_SHA256_H_INCLUDED

View file

@ -22,7 +22,7 @@
==============================================================================
*/
#if defined (__JUCE_CRYPTOGRAPHY_JUCEHEADER__) && ! JUCE_AMALGAMATED_INCLUDE
#if defined (JUCE_CRYPTOGRAPHY_H_INCLUDED) && ! JUCE_AMALGAMATED_INCLUDE
/* When you add this cpp file to your project, you mustn't include it in a file where you've
already included any other headers - just put it inside a file on its own, possibly with your config
flags preceding it, but don't include anything else. That also includes avoiding any automatic prefix

View file

@ -22,8 +22,8 @@
==============================================================================
*/
#ifndef __JUCE_CRYPTOGRAPHY_JUCEHEADER__
#define __JUCE_CRYPTOGRAPHY_JUCEHEADER__
#ifndef JUCE_CRYPTOGRAPHY_H_INCLUDED
#define JUCE_CRYPTOGRAPHY_H_INCLUDED
//=============================================================================
#include "../juce_core/juce_core.h"
@ -32,23 +32,13 @@ namespace juce
{
// START_AUTOINCLUDE encryption, hashing
#ifndef __JUCE_BLOWFISH_JUCEHEADER__
#include "encryption/juce_BlowFish.h"
#endif
#ifndef __JUCE_PRIMES_JUCEHEADER__
#include "encryption/juce_Primes.h"
#endif
#ifndef __JUCE_RSAKEY_JUCEHEADER__
#include "encryption/juce_RSAKey.h"
#endif
#ifndef __JUCE_MD5_JUCEHEADER__
#include "hashing/juce_MD5.h"
#endif
#ifndef __JUCE_SHA256_JUCEHEADER__
#include "hashing/juce_SHA256.h"
#endif
#include "encryption/juce_BlowFish.h"
#include "encryption/juce_Primes.h"
#include "encryption/juce_RSAKey.h"
#include "hashing/juce_MD5.h"
#include "hashing/juce_SHA256.h"
// END_AUTOINCLUDE
}
#endif // __JUCE_CRYPTOGRAPHY_JUCEHEADER__
#endif // JUCE_CRYPTOGRAPHY_H_INCLUDED