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