aboutsummaryrefslogtreecommitdiffstats
path: root/smbencrypt.h
diff options
context:
space:
mode:
Diffstat (limited to 'smbencrypt.h')
-rw-r--r--smbencrypt.h17
1 files changed, 15 insertions, 2 deletions
diff --git a/smbencrypt.h b/smbencrypt.h
index 0f33b062..03e17d94 100644
--- a/smbencrypt.h
+++ b/smbencrypt.h
@@ -1,2 +1,15 @@
-void SMBencrypt(char *passwd, uint8 *c8, uint8 *p24);
-void SMBNTencrypt(char *passwd, uint8 *c8, uint8 *p24);
+#ifndef SMBENCRYPT_H
+#define SMBENCRYPT_H
+
+#include "smbtypes.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+void SMBencrypt(uint8 *passwd, uint8 *c8, uint8 *p24);
+void SMBNTencrypt(uint8 *passwd, uint8 *c8, uint8 *p24);
+#ifdef __cplusplus
+}
+
+#endif
+#endif