Loading...
Searching...
No Matches
PdInstance.hpp
1#pragma once
2#if !defined(PDINSTANCE)
3#define PDINSTANCE
4#endif
5struct _pdinstance;
6namespace Pd
7{
8struct Instance
9{
10 explicit Instance();
11 ~Instance();
12 _pdinstance* instance{};
13 void* file_handle{};
14 int dollarzero = 0;
15 bool ui_open{};
16};
17
18}
Definition PdInstance.hpp:9