diff options
author | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-02-23 22:36:25 +0100 |
---|---|---|
committer | Goraf <22941576+Goraf@users.noreply.github.com> | 2018-02-24 18:20:43 +0100 |
commit | dff565f40105b20b0e8e4dba1f48ccc9b8e7ff44 (patch) | |
tree | 091f564418533267369d993f554e939c7351f4d6 /plugins/AssocMgr | |
parent | 1cd49f75aa0dd71a1df44a1740dd4c15fe5656cf (diff) |
guard headers
Diffstat (limited to 'plugins/AssocMgr')
-rw-r--r-- | plugins/AssocMgr/src/assoclist.h | 2 | ||||
-rw-r--r-- | plugins/AssocMgr/src/dde.h | 2 | ||||
-rw-r--r-- | plugins/AssocMgr/src/reg.h | 2 | ||||
-rw-r--r-- | plugins/AssocMgr/src/stdafx.h | 2 | ||||
-rw-r--r-- | plugins/AssocMgr/src/test.h | 2 | ||||
-rw-r--r-- | plugins/AssocMgr/src/utils.h | 2 |
6 files changed, 12 insertions, 0 deletions
diff --git a/plugins/AssocMgr/src/assoclist.h b/plugins/AssocMgr/src/assoclist.h index fafbbdf097..8afaeebe70 100644 --- a/plugins/AssocMgr/src/assoclist.h +++ b/plugins/AssocMgr/src/assoclist.h @@ -19,6 +19,8 @@ along with this program (AssocMgr-License.txt); if not, write to the Free Softwa Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#pragma once
+
/* Assoc Enabled */
void CleanupAssocEnabledSettings(void);
/* Mime Reg */
diff --git a/plugins/AssocMgr/src/dde.h b/plugins/AssocMgr/src/dde.h index b9fa35043c..3ef72190eb 100644 --- a/plugins/AssocMgr/src/dde.h +++ b/plugins/AssocMgr/src/dde.h @@ -19,6 +19,8 @@ along with this program (AssocMgr-License.txt); if not, write to the Free Softwa Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#pragma once
+
/* Conversation */
#define DDEAPP L"Miranda"
#define DDETOPIC L"OpenAssoc"
diff --git a/plugins/AssocMgr/src/reg.h b/plugins/AssocMgr/src/reg.h index c7e74d0634..5cd27c7a33 100644 --- a/plugins/AssocMgr/src/reg.h +++ b/plugins/AssocMgr/src/reg.h @@ -19,6 +19,8 @@ along with this program (AssocMgr-License.txt); if not, write to the Free Softwa Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#pragma once
+
/* Backup to DB */
void CleanupRegTreeBackupSettings(void);
/* Class */
diff --git a/plugins/AssocMgr/src/stdafx.h b/plugins/AssocMgr/src/stdafx.h index 6c93da6e33..40a5aa624c 100644 --- a/plugins/AssocMgr/src/stdafx.h +++ b/plugins/AssocMgr/src/stdafx.h @@ -19,6 +19,8 @@ along with this program (AssocMgr-License.txt); if not, write to the Free Softwa Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#pragma once
+
#include <shlobj.h> /* for SHChangeNotify() */
#include <Vssym32.h>
#include <malloc.h>
diff --git a/plugins/AssocMgr/src/test.h b/plugins/AssocMgr/src/test.h index 638dea164b..ab47ad5fd8 100644 --- a/plugins/AssocMgr/src/test.h +++ b/plugins/AssocMgr/src/test.h @@ -19,6 +19,8 @@ along with this program (AssocMgr-License.txt); if not, write to the Free Softwa Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#pragma once
+
/* Misc */
void InitTest(void);
void UninitTest(void);
diff --git a/plugins/AssocMgr/src/utils.h b/plugins/AssocMgr/src/utils.h index 802b74d94b..7a07827944 100644 --- a/plugins/AssocMgr/src/utils.h +++ b/plugins/AssocMgr/src/utils.h @@ -19,6 +19,8 @@ along with this program (AssocMgr-License.txt); if not, write to the Free Softwa Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
+#pragma once
+
void DynamicLoadInit();
/* String Conv */
|