aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar DINH Viet Hoa <dinh.viet.hoa@gmail.com>2013-02-02 21:59:23 -0800
committerGravatar DINH Viet Hoa <dinh.viet.hoa@gmail.com>2013-02-02 21:59:23 -0800
commitd53c4d517c87391b6c554d93094ff6e77767d11b (patch)
tree4b653df9c67796bf60d77b8c846a725b16d70dc1 /src
parent7574f9d9c9c68e73c94fab2d4062cd92bc607e73 (diff)
added header guards
Diffstat (limited to 'src')
-rw-r--r--src/objc/MCOConstants.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/objc/MCOConstants.h b/src/objc/MCOConstants.h
index 355fceb3..257b0d68 100644
--- a/src/objc/MCOConstants.h
+++ b/src/objc/MCOConstants.h
@@ -1,3 +1,7 @@
+#ifndef __MAILCORE_MCOCONSTANTS_H_
+
+#define __MAILCORE_MCOCONSTANTS_H_
+
typedef enum {
MCOConnectionTypeClear = 1 << 0,
MCOConnectionTypeStartTLS = 1 << 1,
@@ -15,3 +19,5 @@ typedef enum {
MCOAuthTypeSASLNTLM = 1 << 6,
MCOAuthTypeSASLKerberosV4 = 1 << 7,
} MCOAuthType;
+
+#endif