mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-08 21:25:14 +01:00
11 lines
238 B
C
11 lines
238 B
C
typedef struct NvGpu NvGpu;
|
|
|
|
typedef struct {
|
|
NvGpu* parent;
|
|
Event event;
|
|
bool has_init;
|
|
} NvErrorNotifier;
|
|
|
|
Result nvErrorNotifierCreate(NvErrorNotifier* t, NvGpu* parent);
|
|
void nvErrorNotifierClose(NvErrorNotifier* t);
|