diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-21 22:53:14 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-21 22:53:14 +0300 |
commit | 12f0d4103b52168304ceb1f186f92a7811761a1a (patch) | |
tree | d075b08563032845a0c95288f0d479be9bc45316 /include | |
parent | 49600428c7c70b765432d0d6beb6f3a53f95692d (diff) |
GetPluginLangId() rewritten using CMPlugin
Diffstat (limited to 'include')
-rw-r--r-- | include/newpluginapi.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/newpluginapi.h b/include/newpluginapi.h index bb86189e87..585adaa27e 100644 --- a/include/newpluginapi.h +++ b/include/newpluginapi.h @@ -175,6 +175,8 @@ public: void debugLogA(LPCSTR szFormat, ...);
void debugLogW(LPCWSTR wszFormat, ...);
+ __forceinline const PLUGININFOEX& getInfo() const { return m_pInfo; }
+
__forceinline HINSTANCE getInst() const { return m_hInst; }
__forceinline void setInst(HINSTANCE hInst) { m_hInst = hInst; }
|