This commit is contained in:
2026-06-02 09:43:01 +02:00
parent fba92ac2b2
commit 15cf9ffa94
6 changed files with 107 additions and 1 deletions

20
include/server/io/dump.h Normal file
View File

@@ -0,0 +1,20 @@
#ifndef DUMP_H
#define DUMP_H
#include <stdint.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdbool.h>
typedef struct {
char loc[256];
char* dataPtr;
size_t dataLen;
} dump_t;
bool Generic_FileExists(char* file);
// Pass dump_t
void* Dump_DumpRoutine(void* dumpData);
#endif