File tree Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Expand file tree Collapse file tree 2 files changed +6
-9
lines changed Original file line number Diff line number Diff line change 1
1
#ifndef VMC_GROUPS_H
2
2
#define VMC_GROUPS_H
3
3
4
- #include <stddef.h> // Required for size_t
5
-
6
4
// Structure to hold a single Memory Card Group and its associated Title IDs
7
- typedef struct
8
- {
9
- const char * groupId ; // The group ID string (e.g., "XEBP_100.01")
10
- const char * * titleIds ; // Pointer to an array of title ID strings
11
- size_t titleCount ; // Number of title IDs in the 'titleIds' array
12
- } MemoryCardGroup ;
13
5
14
6
/**
15
7
* @brief Finds the Group ID associated with a given Title ID.
@@ -24,6 +16,5 @@ typedef struct
24
16
* @return A const char* pointer to the Group ID string if found,
25
17
* otherwise, a const char* pointer to the original titleId parameter.
26
18
*/
27
-
28
19
const char * getGroupIdForTitleId (const char * titleId );
29
20
#endif // VMC_GROUPS_H
Original file line number Diff line number Diff line change 1
1
2
2
#include "include/vmc_groups.h"
3
3
#include <string.h>
4
+ typedef struct
5
+ {
6
+ const char * groupId ; // The group ID string (e.g., "XEBP_100.01")
7
+ const char * * titleIds ; // Pointer to an array of title ID strings
8
+ size_t titleCount ; // Number of title IDs in the 'titleIds' array
9
+ } MemoryCardGroup ;
4
10
5
11
// --- Embedded Dictionary Data ---
6
12
You can’t perform that action at this time.
0 commit comments