LeviLamina
Loading...
Searching...
No Matches
IApi.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/threading/ApiId.h"
7
8struct IApi {
9public:
10 // virtual functions
11 // NOLINTBEGIN
12 virtual uint AddRef() = 0;
13
14 virtual uint Release() = 0;
15
16 virtual HRESULT QueryApi(::ApiId, void**) = 0;
17 // NOLINTEND
18
19public:
20 // virtual function thunks
21 // NOLINTBEGIN
22
23 // NOLINTEND
24};
Definition IApi.h:8