mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-07-10 04:46:48 -04:00
normalize header guards to {tu_name}_H_ (#87)
i previously had a bad habit of using double underscores in include guard macro names, which are implementation-reserved per the C++98 standard (see 17.4.3.1.2 Global names). Co-authored-by: Pheenoh <pheenoh@gmail.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef __J2DPICTURE_H_
|
||||
#define __J2DPICTURE_H_
|
||||
#ifndef J2DPICTURE_H_
|
||||
#define J2DPICTURE_H_
|
||||
|
||||
#include "global.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __J2DSCREEN_H_
|
||||
#define __J2DSCREEN_H_
|
||||
#ifndef J2DSCREEN_H_
|
||||
#define J2DSCREEN_H_
|
||||
|
||||
#include "global.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __J2DTEXTBOX_H_
|
||||
#define __J2DTEXTBOX_H_
|
||||
#ifndef J2DTEXTBOX_H_
|
||||
#define J2DTEXTBOX_H_
|
||||
|
||||
#include "global.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __J3DANIMATION_H_
|
||||
#define __J3DANIMATION_H_
|
||||
#ifndef J3DANIMATION_H_
|
||||
#define J3DANIMATION_H_
|
||||
|
||||
#include "global.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef JSYSTEM_JGADGET_BINARY_H
|
||||
#define JSYSTEM_JGADGET_BINARY_H
|
||||
#ifndef JSYSTEM_JGADGET_BINARY_H_
|
||||
#define JSYSTEM_JGADGET_BINARY_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef JSYSTEM_JGADGET_LINKLIST_H
|
||||
#define JSYSTEM_JGADGET_LINKLIST_H
|
||||
#ifndef JSYSTEM_JGADGET_LINKLIST_H_
|
||||
#define JSYSTEM_JGADGET_LINKLIST_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRARAM_H__
|
||||
#define __JKRARAM_H__
|
||||
#ifndef JKRARAM_H_
|
||||
#define JKRARAM_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRAramHeap/JKRAramHeap.h"
|
||||
#include "JSystem/JKernel/JKRDvdRipper/JKRDvdRipper.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRARAMARCHIVE_H__
|
||||
#define __JKRARAMARCHIVE_H__
|
||||
#ifndef JKRARAMARCHIVE_H_
|
||||
#define JKRARAMARCHIVE_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRArchive/JKRArchive.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRARAMBLOCK_H__
|
||||
#define __JKRARAMBLOCK_H__
|
||||
#ifndef JKRARAMBLOCK_H_
|
||||
#define JKRARAMBLOCK_H_
|
||||
|
||||
#include "JSystem/JSupport/JSUList/JSUList.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRARAMHEAP_H__
|
||||
#define __JKRARAMHEAP_H__
|
||||
#ifndef JKRARAMHEAP_H_
|
||||
#define JKRARAMHEAP_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRDisposer/JKRDisposer.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRARAMPIECE_H__
|
||||
#define __JKRARAMPIECE_H__
|
||||
#ifndef JKRARAMPIECE_H_
|
||||
#define JKRARAMPIECE_H_
|
||||
|
||||
#include "JSystem/JSupport/JSUList/JSUList.h"
|
||||
#include "ar/ARQ.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRARAMSTREAM_H__
|
||||
#define __JKRARAMSTREAM_H__
|
||||
#ifndef JKRARAMSTREAM_H_
|
||||
#define JKRARAMSTREAM_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRThread/JKRThread.h"
|
||||
#include "JSystem/JSupport/JSUFileInputStream/JSUFileInputStream.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRARCHIVEPUB_H__
|
||||
#define __JKRARCHIVEPUB_H__
|
||||
#ifndef JKRARCHIVEPUB_H_
|
||||
#define JKRARCHIVEPUB_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRDecomp/JKRDecomp.h"
|
||||
#include "JSystem/JKernel/JKRFileLoader/JKRFileLoader.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRASSERTHEAP_H__
|
||||
#define __JKRASSERTHEAP_H__
|
||||
#ifndef JKRASSERTHEAP_H_
|
||||
#define JKRASSERTHEAP_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRHeap/JKRHeap.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRCOMPARCHIVE_H__
|
||||
#define __JKRCOMPARCHIVE_H__
|
||||
#ifndef JKRCOMPARCHIVE_H_
|
||||
#define JKRCOMPARCHIVE_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRArchive/JKRArchive.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRCOMPREESION_H__
|
||||
#define __JKRCOMPREESION_H__
|
||||
#ifndef JKRCOMPREESION_H_
|
||||
#define JKRCOMPREESION_H_
|
||||
|
||||
#include "JSystem/JKernel/SArc.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRDECOMP_H__
|
||||
#define __JKRDECOMP_H__
|
||||
#ifndef JKRDECOMP_H_
|
||||
#define JKRDECOMP_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRCompression.h"
|
||||
#include "JSystem/JKernel/JKRThread/JKRThread.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRDISPOSER_H__
|
||||
#define __JKRDISPOSER_H__
|
||||
#ifndef JKRDISPOSER_H_
|
||||
#define JKRDISPOSER_H_
|
||||
|
||||
#include "JSystem/JSupport/JSUList/JSUList.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRDVDARAMRIPPER_H__
|
||||
#define __JKRDVDARAMRIPPER_H__
|
||||
#ifndef JKRDVDARAMRIPPER_H_
|
||||
#define JKRDVDARAMRIPPER_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRDvdRipper/JKRDvdRipper.h"
|
||||
#include "JSystem/JSupport/JSUFileInputStream/JSUFileInputStream.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRDVDARCHIVE_H__
|
||||
#define __JKRDVDARCHIVE_H__
|
||||
#ifndef JKRDVDARCHIVE_H_
|
||||
#define JKRDVDARCHIVE_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRArchive/JKRArchive.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRDVDFILE_H__
|
||||
#define __JKRDVDFILE_H__
|
||||
#ifndef JKRDVDFILE_H_
|
||||
#define JKRDVDFILE_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRFile/JKRFile.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRDVDRIPPER_H__
|
||||
#define __JKRDVDRIPPER_H__
|
||||
#ifndef JKRDVDRIPPER_H_
|
||||
#define JKRDVDRIPPER_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRDecomp/JKRDecomp.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKREXPHEAP_H__
|
||||
#define __JKREXPHEAP_H__
|
||||
#ifndef JKREXPHEAP_H_
|
||||
#define JKREXPHEAP_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRHeap/JKRHeap.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRFILE_H__
|
||||
#define __JKRFILE_H__
|
||||
#ifndef JKRFILE_H_
|
||||
#define JKRFILE_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRDisposer/JKRDisposer.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRFILECACHE_H__
|
||||
#define __JKRFILECACHE_H__
|
||||
#ifndef JKRFILECACHE_H_
|
||||
#define JKRFILECACHE_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRFileLoader/JKRFileLoader.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRFILEFINDER_H__
|
||||
#define __JKRFILEFINDER_H__
|
||||
#ifndef JKRFILEFINDER_H_
|
||||
#define JKRFILEFINDER_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
#include "dvd/dvd.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRFILELOADER_H__
|
||||
#define __JKRFILELOADER_H__
|
||||
#ifndef JKRFILELOADER_H_
|
||||
#define JKRFILELOADER_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRDisposer/JKRDisposer.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRHEAP_H__
|
||||
#define __JKRHEAP_H__
|
||||
#ifndef JKRHEAP_H_
|
||||
#define JKRHEAP_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRDisposer/JKRDisposer.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRMEMARCHIVE_H__
|
||||
#define __JKRMEMARCHIVE_H__
|
||||
#ifndef JKRMEMARCHIVE_H_
|
||||
#define JKRMEMARCHIVE_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRArchive/JKRArchive.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRSOLIDHEAP_H__
|
||||
#define __JKRSOLIDHEAP_H__
|
||||
#ifndef JKRSOLIDHEAP_H_
|
||||
#define JKRSOLIDHEAP_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRHeap/JKRHeap.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JKRTHREAD_H__
|
||||
#define __JKRTHREAD_H__
|
||||
#ifndef JKRTHREAD_H_
|
||||
#define JKRTHREAD_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRDisposer/JKRDisposer.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __SARC_H__
|
||||
#define __SARC_H__
|
||||
#ifndef SARC_H_
|
||||
#define SARC_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSYSTEM_JMATH_RANDOM_H__
|
||||
#define __JSYSTEM_JMATH_RANDOM_H__
|
||||
#ifndef JSYSTEM_JMATH_RANDOM_H_
|
||||
#define JSYSTEM_JMATH_RANDOM_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __CONTROL_H_
|
||||
#define __CONTROL_H_
|
||||
#ifndef CONTROL_H_
|
||||
#define CONTROL_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef JSYSTEM_OBJECTID_H
|
||||
#define JSYSTEM_OBJECTID_H
|
||||
#ifndef JSYSTEM_OBJECTID_H_
|
||||
#define JSYSTEM_OBJECTID_H_
|
||||
|
||||
#include "JSystem/JGadget/binary.h"
|
||||
#include "JSystem/JGadget/linklist.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSUFILEINPUTSTREAM_H__
|
||||
#define __JSUFILEINPUTSTREAM_H__
|
||||
#ifndef JSUFILEINPUTSTREAM_H_
|
||||
#define JSUFILEINPUTSTREAM_H_
|
||||
|
||||
#include "JSystem/JSupport/JSURandomInputStream/JSURandomInputStream.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSUINPUTSTREAM_H__
|
||||
#define __JSUINPUTSTREAM_H__
|
||||
#ifndef JSUINPUTSTREAM_H_
|
||||
#define JSUINPUTSTREAM_H_
|
||||
|
||||
#include "JSystem/JSupport/JSUIosBase.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSUIOSBASE_H__
|
||||
#define __JSUIOSBASE_H__
|
||||
#ifndef JSUIOSBASE_H_
|
||||
#define JSUIOSBASE_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSULIST_H__
|
||||
#define __JSULIST_H__
|
||||
#ifndef JSULIST_H_
|
||||
#define JSULIST_H_
|
||||
|
||||
#include "dolphin/types.h"
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSURANDOMINPUTSTREAM_H__
|
||||
#define __JSURANDOMINPUTSTREAM_H__
|
||||
#ifndef JSURANDOMINPUTSTREAM_H_
|
||||
#define JSURANDOMINPUTSTREAM_H_
|
||||
|
||||
#include "JSystem/JSupport/JSUInputStream.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef JSYSTEM_JUTILITY_JUTFONT_H
|
||||
#define JSYSTEM_JUTILITY_JUTFONT_H
|
||||
#ifndef JSYSTEM_JUTILITY_JUTFONT_H_
|
||||
#define JSYSTEM_JUTILITY_JUTFONT_H_
|
||||
|
||||
#include "global.h"
|
||||
#include "gx/GX.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JSYSTEM_JUTILITY_JUTGAMEPAD__
|
||||
#define __JSYSTEM_JUTILITY_JUTGAMEPAD__
|
||||
#ifndef JSYSTEM_JUTILITY_JUTGAMEPAD_
|
||||
#define JSYSTEM_JUTILITY_JUTGAMEPAD_
|
||||
|
||||
#include "JSystem/JKernel/JKRDisposer/JKRDisposer.h"
|
||||
#include "JSystem/JSupport/JSUList/JSUList.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef JSYSTEM_JUTILITY_JUT_RES_FONT
|
||||
#define JSYSTEM_JUTILITY_JUT_RES_FONT
|
||||
#ifndef JSYSTEM_JUTILITY_JUT_RES_FONT_
|
||||
#define JSYSTEM_JUTILITY_JUT_RES_FONT_
|
||||
|
||||
#include "JSystem/JKernel/JKRHeap/JKRHeap.h"
|
||||
#include "JSystem/JUtility/JUTFont/JUTFont.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JUTILITY_JUTVIDEO_JUTVIDEO_H__
|
||||
#define __JUTILITY_JUTVIDEO_JUTVIDEO_H__
|
||||
#ifndef JUTILITY_JUTVIDEO_JUTVIDEO_H_
|
||||
#define JUTILITY_JUTVIDEO_JUTVIDEO_H_
|
||||
|
||||
#include "gx/GX.h"
|
||||
#include "os/OS.h"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
#ifndef __JUTILITY_JUTXFB_JUTXFB_H__
|
||||
#define __JUTILITY_JUTXFB_JUTXFB_H__
|
||||
#ifndef JUTILITY_JUTXFB_JUTXFB_H_
|
||||
#define JUTILITY_JUTXFB_JUTXFB_H_
|
||||
|
||||
#include "JSystem/JKernel/JKRHeap/JKRHeap.h"
|
||||
#include "dolphin/types.h"
|
||||
|
||||
Reference in New Issue
Block a user