mirror of
https://github.com/joel16/NX-Shell.git
synced 2024-11-23 03:39:49 +00:00
12 lines
165 B
C++
12 lines
165 B
C++
#pragma once
|
|
|
|
#include <switch.h>
|
|
#include <vector>
|
|
|
|
namespace USB {
|
|
Result Init(void);
|
|
void Exit(void);
|
|
void Unmount(void);
|
|
bool Connected(void);
|
|
}
|