mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-08 21:25:14 +01:00
12 lines
253 B
C
12 lines
253 B
C
#include "ioctl.h"
|
|
|
|
typedef struct NvChannel {
|
|
u32 fd;
|
|
bool has_init;
|
|
} NvChannel;
|
|
|
|
Result nvchannelCreate(NvChannel* c, const char* dev);
|
|
void nvchannelClose(NvChannel* c);
|
|
|
|
Result nvchannelSetPriority(NvChannel* c, NvChannelPriority prio);
|