airborne/generator/generator.hpp
2024-01-05 18:32:18 +02:00

12 lines
284 B
C++

#pragma once
#include <windows.h>
#include <string>
#define BOOTSTRAP_LEN 79
// Utils
BOOL GetFileContents(std::string filePath, LPBYTE *fileContents, DWORD *fileSize);
BOOL WriteFileContents(std::string filePath, LPBYTE fileContents, DWORD fileSize);
void PrintHelp(char **argv);