1
0
Fork 0
mirror of https://github.com/eliboa/TegraRcmGUI.git synced 2024-09-20 05:53:36 +01:00
TegraRcmGUI/TegraRcmSmash.h
2018-05-11 00:39:24 +02:00

25 lines
444 B
C++

#pragma once
#include "Types.h"
#include "ScopeGuard.h"
#include "WinHandle.h"
#include <assert.h>
#include <tchar.h>
#include <stdio.h>
#include <io.h>
#include <fcntl.h>
#include <iostream>
#include <fstream>
#include "libusbk_int.h"
class TegraRcmSmash
{
public:
TegraRcmSmash();
~TegraRcmSmash();
static int RcmStatus();
static int Smash(TCHAR* payload, CString coreboot = _T(""));
static int SmashMain(int argc, TCHAR* argv[]);
};