Mercurial
view seobeo/snapshot_creator.h @ 225:70de0c80d093 hg-web
[hg-web] Add side-by-side changeset diffs
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Sun, 02 Aug 2026 14:41:09 -0700 |
| parents | 551d9fc0a2ba |
| children |
line wrap: on
line source
#ifndef SEOBEO_SNAPSHOT_CREATOR_H #define SEOBEO_SNAPSHOT_CREATOR_H #include "seobeo/seobeo.h" typedef struct { const char *path; int expected_status; const char *snapshot_dir; const char *host; const char *port; } SnapshotConfig; int Seobeo_Snapshot_Create(const SnapshotConfig *config); int Seobeo_Snapshots_Create_Batch(const SnapshotConfig configs[], int count); #endif