mirror of
https://github.com/reactos/ccache.git
synced 2024-11-23 19:59:46 +00:00
13 lines
342 B
C
13 lines
342 B
C
#ifndef MANIFEST_H
|
|
#define MANIFEST_H
|
|
|
|
#include "hashutil.h"
|
|
#include "hashtable.h"
|
|
|
|
struct file_hash *manifest_get(const char *manifest_path);
|
|
bool manifest_put(const char *manifest_path, struct file_hash *object_hash,
|
|
struct hashtable *included_files);
|
|
bool manifest_dump(const char *manifest_path, FILE *stream);
|
|
|
|
#endif
|