airborne/generator/generator.hpp

12 lines
284 B
C++
Raw Normal View History

#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);
2024-01-05 17:32:18 +01:00
void PrintHelp(char **argv);