summaryrefslogtreecommitdiff
path: root/src/T2DLL/CPluginInfoArray.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/T2DLL/CPluginInfoArray.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/T2DLL/CPluginInfoArray.h b/src/T2DLL/CPluginInfoArray.h
new file mode 100644
index 0000000..e9fb2bb
--- /dev/null
+++ b/src/T2DLL/CPluginInfoArray.h
@@ -0,0 +1,13 @@
+#pragma once
+#include "common.h"
+#include "LArray.h"
+
+class DLL_EXPORT CPluginInfoArray : public LArray {
+public:
+ CPluginInfoArray(BOOL ownsPluginInfo = true);
+ virtual ~CPluginInfoArray();
+ int GetUsedCount();
+
+protected:
+ BOOL mOwnsPluginInfo;
+};