]> Kevux Git Server - controller/commitdiff
Update: Use the pre-defined typedef structure style for the main program type.
authorKevin Day <Kevin@kevux.org>
Mon, 20 Jan 2025 23:54:02 +0000 (17:54 -0600)
committerKevin Day <Kevin@kevux.org>
Mon, 20 Jan 2025 23:54:02 +0000 (17:54 -0600)
Make sure that the typedef is defined early for a later defined type.
This allows for circular use of the main, such as with callbacks.

This is being done across all of my programs.

sources/c/program/controller/main/common/type/defs.h

index 26a5683cf15bff4748cfc099ff9e33af642e5f17..c5c083bd0274a42198805ec0009ef7884e5fdbdb 100644 (file)
@@ -17,39 +17,39 @@ extern "C" {
 #endif
 
 /**
+ * Pre-define the main type so it can be used in child classes.
+ */
+#ifndef _di_fake_main_t_typedef_
+  typedef struct controller_t_ controller_t;
+#endif // _di_fake_main_t_typedef_
+
+/**
  * The controller instance typedef.
  */
- #ifndef _di_controller_instance_t_
+ #ifndef _di_controller_instance_t_typedef_
   typedef struct controller_instance_t_ controller_instance_t;
-#endif // _di_controller_instance_t_
+#endif // _di_controller_instance_t_typedef_
 
 /**
  * The controller instances typedef.
  */
- #ifndef _di_controller_instances_t_
+ #ifndef _di_controller_instances_t_typedef_
   typedef struct controller_instances_t_ controller_instances_t;
-#endif // _di_controller_instances_t_
-
-/**
- * The controller main typedef.
- */
-#ifndef _di_controller_t_
-  typedef struct controller_t_ controller_t;
-#endif // _di_controller_t_
+#endif // _di_controller_instances_t_typedef_
 
 /**
  * The controller program typedef.
  */
-#ifndef _di_controller_process_t
+#ifndef _di_controller_process_t_typedef_
   typedef struct controller_process_t_ controller_process_t;
-#endif // _di_controller_process_t
+#endif // _di_controller_process_t_typedef_
 
 /**
  * The controller thread typedef.
  */
- #ifndef _di_controller_thread_t_
+ #ifndef _di_controller_thread_t_typedef_
   typedef struct controller_thread_t_ controller_thread_t;
-#endif // _di_controller_thread_t_
+#endif // _di_controller_thread_t_typedef_
 
 #ifdef __cplusplus
 } // extern "C"