mirror of
https://github.com/switchbrew/libnx.git
synced 2025-12-08 13:15:15 +01:00
10 lines
200 B
C
10 lines
200 B
C
typedef struct NvGpu NvGpu;
|
|
|
|
typedef struct {
|
|
NvGpu* parent;
|
|
bool has_init;
|
|
} NvErrorNotifier;
|
|
|
|
Result nverrCreate(NvErrorNotifier* t, NvGpu* parent);
|
|
void nverrClose(NvErrorNotifier* t);
|