diff options
| author | Markus Mittendrein <git@maxmitti.tk> | 2018-08-19 13:28:44 +0200 |
|---|---|---|
| committer | Markus Mittendrein <git@maxmitti.tk> | 2018-08-19 14:14:31 +0200 |
| commit | 4dcfb134c3ae43f4f1325228a86137df00e27693 (patch) | |
| tree | 050c8e97f679704754b6b072ed6fb4e80dad9ffe /src/cc4group.h | |
| parent | c226414e0c0e804f9635914667b2c20747bc26c3 (diff) | |
| download | cc4group-4dcfb134c3ae43f4f1325228a86137df00e27693.tar.gz cc4group-4dcfb134c3ae43f4f1325228a86137df00e27693.zip | |
Refactor some calls to cc4group_getEntryByPath into several common functions
Diffstat (limited to 'src/cc4group.h')
| -rw-r--r-- | src/cc4group.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cc4group.h b/src/cc4group.h index aab776c..a6dcd37 100644 --- a/src/cc4group.h +++ b/src/cc4group.h @@ -47,7 +47,7 @@ typedef struct { bool (*extractSingle)(CC4Group* const this, const char* const entryPath, const char* const targetPath); // the group owns the data pointed to. the pointer is valid until the group destructor is called - bool (*getEntryData)(const CC4Group* const this, const char* const entryPath, const void** const data, size_t* const size); + bool (*getEntryData)(CC4Group* const this, const char* const entryPath, const void** const data, size_t* const size); // the returned error message pointer is valid until the next call to getErrorMessage is issued or the group is destructed const char* (*getErrorMessage)(CC4Group* const this); |
