Add labels to all typedef'd structs and enums
Release / release (push) Successful in 4s

This commit is contained in:
2026-09-13 02:31:46 +01:00
parent 5df1a105c7
commit 575e0a52b1
20 changed files with 74 additions and 26 deletions
+2 -2
View File
@@ -13,7 +13,7 @@ BEGIN_C_LINKAGE
typedef struct WpFile WpFile;
typedef enum {
typedef enum WpFileAccessMode {
WP_ACCESS_READ, // Equivalent to r
WP_ACCESS_WRITE, // Equivalent to w
WP_ACCESS_APPEND, // Equivalent to a
@@ -26,7 +26,7 @@ typedef enum {
COUNT_FILE_ACCESS_MODE,
} WpFileAccessMode;
typedef enum {
typedef enum WpFileSeekOrigin {
WP_SEEK_START,
WP_SEEK_CURRENT,
WP_SEEK_END,