mirror of
https://github.com/godotengine/godot.git
synced 2026-01-06 10:11:57 +03:00
Adding missing include guards to header files identified by LGTM.
This addresses the issue godotengine/godot#37143
This commit is contained in:
@@ -28,5 +28,10 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifndef ANDROID_API_H
|
||||
#define ANDROID_API_H
|
||||
|
||||
void register_android_api();
|
||||
void unregister_android_api();
|
||||
|
||||
#endif // ANDROID_API_H
|
||||
|
||||
@@ -28,4 +28,9 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifndef ANDROID_EXPORT_H
|
||||
#define ANDROID_EXPORT_H
|
||||
|
||||
void register_android_exporter();
|
||||
|
||||
#endif // ANDROID_EXPORT_H
|
||||
|
||||
@@ -28,4 +28,9 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifndef IPHONE_EXPORT_H
|
||||
#define IPHONE_EXPORT_H
|
||||
|
||||
void register_iphone_exporter();
|
||||
|
||||
#endif // IPHONE_EXPORT_H
|
||||
|
||||
@@ -28,5 +28,10 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifndef JAVASCRIPT_API_H
|
||||
#define JAVASCRIPT_API_H
|
||||
|
||||
void register_javascript_api();
|
||||
void unregister_javascript_api();
|
||||
|
||||
#endif // JAVASCRIPT_API_H
|
||||
|
||||
@@ -28,4 +28,9 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifndef OSX_EXPORT_H
|
||||
#define OSX_EXPORT_H
|
||||
|
||||
void register_osx_exporter();
|
||||
|
||||
#endif // OSX_EXPORT_H
|
||||
|
||||
@@ -28,4 +28,9 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifndef UWP_EXPORT_H
|
||||
#define UWP_EXPORT_H
|
||||
|
||||
void register_uwp_exporter();
|
||||
|
||||
#endif // UWP_EXPORT_H
|
||||
|
||||
@@ -28,4 +28,9 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifndef X11_EXPORT_H
|
||||
#define X11_EXPORT_H
|
||||
|
||||
void register_x11_exporter();
|
||||
|
||||
#endif // X11_EXPORT_H
|
||||
|
||||
Reference in New Issue
Block a user