mirror of
https://github.com/celisej567/cool-source-archive.git
synced 2025-12-31 17:48:37 +03:00
18 lines
317 B
C++
18 lines
317 B
C++
#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);
|