stuff
This commit is contained in:
20
include/server/io/dump.h
Normal file
20
include/server/io/dump.h
Normal 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
|
||||
Reference in New Issue
Block a user