20 lines
298 B
C
20 lines
298 B
C
#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 |