libnx/nx/include/switch/nvidia/gpu/error_notifier.h
2018-08-31 13:05:22 +02:00

12 lines
214 B
C

#pragma once
typedef struct NvGpu NvGpu;
typedef struct {
NvGpu* parent;
bool has_init;
} NvErrorNotifier;
Result nverrCreate(NvErrorNotifier* t, NvGpu* parent);
void nverrClose(NvErrorNotifier* t);