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