mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 09:59:42 +00:00
24 lines
432 B
Protocol Buffer
24 lines
432 B
Protocol Buffer
#include "filters.h"
|
|
#include "files.h"
|
|
#include "base64.h"
|
|
#include "misc.h"
|
|
#include "hex.h"
|
|
#include <iostream>
|
|
|
|
USING_NAMESPACE(CryptoPP)
|
|
USING_NAMESPACE(std)
|
|
|
|
#if GCC_DIAGNOSTIC_AWARE
|
|
# pragma GCC diagnostic push
|
|
# pragma GCC diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
|
|
extern int (*AdhocTest)(int argc, char *argv[]);
|
|
|
|
int MyAdhocTest(int argc, char *argv[])
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static int s_i = (AdhocTest = &MyAdhocTest, 0);
|