diff options
Diffstat (limited to 'plugins/StopSpamMod/src')
-rwxr-xr-x | plugins/StopSpamMod/src/globals.h | 2 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/stdafx.h | 2 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/stopspam.h | 1 | ||||
-rwxr-xr-x | plugins/StopSpamMod/src/utilities.h | 2 |
4 files changed, 7 insertions, 0 deletions
diff --git a/plugins/StopSpamMod/src/globals.h b/plugins/StopSpamMod/src/globals.h index e046e68f6f..ae45848eb2 100755 --- a/plugins/StopSpamMod/src/globals.h +++ b/plugins/StopSpamMod/src/globals.h @@ -1,3 +1,5 @@ +#pragma once
+
#define pluginName "StopSpam" //const char* ?
#define PREF_TCHAR2 PREF_UTF
diff --git a/plugins/StopSpamMod/src/stdafx.h b/plugins/StopSpamMod/src/stdafx.h index d5551e8d10..8a827674d3 100755 --- a/plugins/StopSpamMod/src/stdafx.h +++ b/plugins/StopSpamMod/src/stdafx.h @@ -1,3 +1,5 @@ +#pragma once + #include <windows.h> using namespace std; diff --git a/plugins/StopSpamMod/src/stopspam.h b/plugins/StopSpamMod/src/stopspam.h index 6b76869416..e467c4a666 100755 --- a/plugins/StopSpamMod/src/stopspam.h +++ b/plugins/StopSpamMod/src/stopspam.h @@ -1,3 +1,4 @@ +#pragma once extern BOOL gbDosServiceExist; extern BOOL gbVarsServiceExist; diff --git a/plugins/StopSpamMod/src/utilities.h b/plugins/StopSpamMod/src/utilities.h index f941823bd0..5b0d724408 100755 --- a/plugins/StopSpamMod/src/utilities.h +++ b/plugins/StopSpamMod/src/utilities.h @@ -1,3 +1,5 @@ +#pragma once + std::wstring DBGetContactSettingStringPAN(MCONTACT hContact, char const * szModule, char const * szSetting, std::wstring errorValue); std::string DBGetContactSettingStringPAN_A(MCONTACT hContact, char const * szModule, char const * szSetting, std::string errorValue); std::wstring &GetDlgItemString(HWND hwnd, int id); |