You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
484 B
24 lines
484 B
5 years ago
|
#include "config.h"
|
||
|
#include <iosfwd>
|
||
|
|
||
|
#if CRYPTOPP_MSC_VERSION
|
||
|
# pragma warning(disable: 4100 4189 4996)
|
||
|
#endif
|
||
|
|
||
|
#if CRYPTOPP_GCC_DIAGNOSTIC_AVAILABLE
|
||
|
# pragma GCC diagnostic ignored "-Wunused-variable"
|
||
|
#endif
|
||
|
|
||
|
USING_NAMESPACE(CryptoPP)
|
||
|
USING_NAMESPACE(std)
|
||
|
|
||
|
extern int (*AdhocTest)(int argc, char *argv[]);
|
||
|
|
||
|
int MyAdhocTest(int argc, char *argv[])
|
||
|
{
|
||
|
CRYPTOPP_UNUSED(argc), CRYPTOPP_UNUSED(argv);
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int s_i = (AdhocTest = &MyAdhocTest, 0);
|