mirror of
https://github.com/eliboa/TegraRcmGUI.git
synced 2024-11-08 11:51:45 +00:00
25 lines
444 B
C
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[]);
|
||
|
};
|
||
|
|