]> wimlib.net Git - wimlib/blobdiff - include/wimlib/registry.h
mount_image.c: add fallback definitions of RENAME_* constants
[wimlib] / include / wimlib / registry.h
index 3de81956fccadfb11284a223c84ae4134b31ad32..27fcd1ab42d17c087f94cccca1f9dbe6fe3b78f6 100644 (file)
@@ -13,27 +13,28 @@ enum hive_status {
        HIVE_VALUE_NOT_FOUND,
        HIVE_VALUE_IS_WRONG_TYPE,
        HIVE_OUT_OF_MEMORY,
+       HIVE_ITERATION_STOPPED,
 };
 
-extern enum hive_status
+enum hive_status
 hive_validate(const void *hive_mem, size_t hive_size);
 
-extern enum hive_status
+enum hive_status
 hive_get_string(const struct regf *regf, const tchar *key_name,
                const tchar *value_name, tchar **value_ret);
 
-extern enum hive_status
+enum hive_status
 hive_get_number(const struct regf *regf, const tchar *key_name,
                const tchar *value_name, s64 *value_ret);
 
-extern enum hive_status
+enum hive_status
 hive_list_subkeys(const struct regf *regf, const tchar *key_name,
                  tchar ***subkeys_ret);
 
-extern void
+void
 hive_free_subkeys_list(tchar **subkeys);
 
-extern const char *
+const char *
 hive_status_to_string(enum hive_status status);
 
 #endif /* _WIMLIB_REGISTRY_H */