mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
12 lines
214 B
C
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);
|