Add missing pragma once

This commit is contained in:
Maschell 2020-08-23 13:02:21 +02:00
parent 2a26482bdd
commit 598642e970
2 changed files with 8 additions and 5 deletions

View File

@ -23,7 +23,14 @@
#define KERN_SYSCALL_TBL_4 0xFFEAAA60 // works with home menu
#define KERN_SYSCALL_TBL_5 0xFFEAAE60 // works with browser (previously KERN_SYSCALL_TBL)
#ifdef __cplusplus
extern "C" {
#endif
void doKernelSetup();
void doKernelSetup2();
#ifdef __cplusplus
}
#endif

View File

@ -23,8 +23,7 @@
*
* for WiiXplorer 2010
***************************************************************************/
#ifndef __STRING_TOOLS_H
#define __STRING_TOOLS_H
#pragma once
#include <vector>
#include <string>
@ -60,6 +59,3 @@ public:
static std::vector<std::string> stringSplit(const std::string &value, const std::string &splitter);
};
#endif /* __STRING_TOOLS_H */