mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-22 13:02:38 +02:00
13 lines
252 B
C
13 lines
252 B
C
#pragma once
|
|
|
|
typedef struct NvGpu NvGpu;
|
|
|
|
typedef struct {
|
|
NvGpu* parent;
|
|
Event event;
|
|
bool has_init;
|
|
} NvErrorNotifier;
|
|
|
|
Result nvErrorNotifierCreate(NvErrorNotifier* t, NvGpu* parent);
|
|
void nvErrorNotifierClose(NvErrorNotifier* t);
|