From c0f88ed8a860026e32ec6a06287fcf9394b4cf0a Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 28 Jan 2019 21:08:24 +1100 Subject: Cleanup: sort forward declarations of enum & struct Done using: source/tools/utils_maintenance/c_sort_blocks.py --- source/blender/windowmanager/WM_api.h | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'source/blender/windowmanager/WM_api.h') diff --git a/source/blender/windowmanager/WM_api.h b/source/blender/windowmanager/WM_api.h index bfd555abb9a..16a9144e8b0 100644 --- a/source/blender/windowmanager/WM_api.h +++ b/source/blender/windowmanager/WM_api.h @@ -46,41 +46,41 @@ extern "C" { #endif -struct bContext; -struct bToolRef_Runtime; +struct ARegion; struct GHashIterator; +struct GPUViewport; struct IDProperty; +struct ImBuf; +struct ImageFormatData; +struct Main; +struct MenuType; +struct PointerRNA; +struct PropertyRNA; +struct ScrArea; +struct ViewLayer; +struct bContext; +struct bToolRef_Runtime; +struct rcti; +struct wmDrag; +struct wmDropBox; struct wmEvent; struct wmEventHandler; struct wmGesture; struct wmJob; struct wmMsgSubscribeKey; struct wmMsgSubscribeValue; -struct wmOperatorType; struct wmOperator; +struct wmOperatorType; struct wmPaintCursor; -struct rcti; -struct PointerRNA; -struct PropertyRNA; -struct MenuType; -struct wmDropBox; -struct wmDrag; -struct ImBuf; -struct ImageFormatData; -struct ARegion; -struct ScrArea; -struct Main; -struct ViewLayer; -struct GPUViewport; #ifdef WITH_INPUT_NDOF struct wmNDOFMotionData; #endif -typedef struct wmJob wmJob; typedef struct wmGizmo wmGizmo; typedef struct wmGizmoMap wmGizmoMap; typedef struct wmGizmoMapType wmGizmoMapType; +typedef struct wmJob wmJob; /* general API */ void WM_init_state_app_template_set(const char *app_template); -- cgit v1.2.3