This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#![feature(no_std)] | |
#![feature(intrinsics)] | |
#[no_std] | |
pub type EFI_HANDLE = *mut (); | |
struct EFI_TABLE_HEADER { | |
Signature: u64, | |
Revision: u32, | |
HeaderSize: u32, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local classFunctions = {"Element", "Vehicle", "Ped", "Player", "Object", "Marker", "Blip", "Pickup", "ColShape", "Projectile", "RadarArea", "Team", "Water", "Sound", "Weapon", "GuiElement", "GuiWindow", "GuiButton", "GuiEdit", "GuiLabel", "GuiMemo", "GuiImage", "GuiComboBox", "GuiCheckBox", "GuiRadioButton", "GuiScrollPane", "GuiScrollBar", "GuiProgressBar", "GuiGridList", "GuiTabPanel", "GuiTab", "Resource", "Timer", "File", "XmlNode", "Camera", "Vector3D", "Vector2D", "Matrix"} | |
local File = {} | |
local function OutputToFile(data) | |
local format = "*[[%s|%s]]" | |
local filename_f = "data/%s.txt" | |
for func, data in pairs(data) do | |
local filename = filename_f:format(func) | |
local f = assert(io.open(filename, "w"), ("Unable to create file '%s'"):format(filename)) |