diff options
Diffstat (limited to 'plugins/CryptoPP/crypto/adhoc.cpp.proto')
-rw-r--r-- | plugins/CryptoPP/crypto/adhoc.cpp.proto | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/plugins/CryptoPP/crypto/adhoc.cpp.proto b/plugins/CryptoPP/crypto/adhoc.cpp.proto new file mode 100644 index 0000000000..dc7f697596 --- /dev/null +++ b/plugins/CryptoPP/crypto/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);
|