mirror of
https://github.com/eliboa/TegraRcmGUI.git
synced 2024-11-28 13:12:05 +00:00
23 lines
334 B
C
23 lines
334 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();
|
||
|
};
|
||
|
|