summaryrefslogtreecommitdiff
path: root/embeddedcryptopp/adhoc.cpp.proto
diff options
context:
space:
mode:
authorbertagaz <bertagaz@ptitcanardnoir.org>2011-06-14 15:26:19 +0200
committerbertagaz <bertagaz@ptitcanardnoir.org>2011-06-14 15:26:19 +0200
commit30e9097985656920f01a72efc1088caa2b8d41b3 (patch)
treebedbdb1aaa484af467e538110ab4c0c95985b6b8 /embeddedcryptopp/adhoc.cpp.proto
Imported Upstream version 0.5.29upstream/0.5.29
Diffstat (limited to 'embeddedcryptopp/adhoc.cpp.proto')
-rw-r--r--embeddedcryptopp/adhoc.cpp.proto17
1 files changed, 17 insertions, 0 deletions
diff --git a/embeddedcryptopp/adhoc.cpp.proto b/embeddedcryptopp/adhoc.cpp.proto
new file mode 100644
index 0000000..df09f11
--- /dev/null
+++ b/embeddedcryptopp/adhoc.cpp.proto
@@ -0,0 +1,17 @@
+#include "filters.h"
+#include "files.h"
+#include "base64.h"
+#include "hex.h"
+#include <iostream>
+
+USING_NAMESPACE(CryptoPP)
+USING_NAMESPACE(std)
+
+extern int (*AdhocTest)(int argc, char *argv[]);
+
+int MyAdhocTest(int argc, char *argv[])
+{
+ return 0;
+}
+
+static int s_i = (AdhocTest = &MyAdhocTest, 0);