mirror of
https://github.com/reactos/reactos.git
synced 2025-06-19 00:25:46 +00:00
- Move from using include guards to pragma once.
- Whilst this is non-standard and potentially makes the code less portable, it's supported by both gcc and msvc and should bringg increased compilation speed due to its optimized behaviour (doesn't need to invoke the preprocessor) - Patch by Amine Khaldi [amine.khaldi@reactos.org] svn path=/trunk/; revision=45685
This commit is contained in:
parent
e9e9e2bd0e
commit
c5b25b8e9b
656 changed files with 725 additions and 2796 deletions
|
@ -30,8 +30,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
#ifndef REACTOS_SCRIPTS_H_
|
||||
#define REACTOS_SCRIPTS_H_
|
||||
#pragma once
|
||||
|
||||
#include <assert.h>
|
||||
#include <limits.h>
|
||||
|
@ -69,6 +68,4 @@ extern "C" bool SCRIPTS_GetCharScriptCode(UChar32 c, int32_t * code);
|
|||
extern "C" bool SCRIPTS_GetScriptCode(const SCRIPTS_Script * pScript, int32_t * code);
|
||||
extern "C" void SCRIPTS_GetScriptName(int32_t code, SCRIPTS_Script * pScript);
|
||||
|
||||
#endif
|
||||
|
||||
/* EOF */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue