mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 21:02:39 +02:00
10 lines
177 B
C
10 lines
177 B
C
#pragma once
|
|
|
|
typedef struct NvChannel {
|
|
u32 fd;
|
|
bool has_init;
|
|
} NvChannel;
|
|
|
|
Result nvchannelCreate(NvChannel* c, const char* dev);
|
|
void nvchannelClose(NvChannel* c);
|