mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-01-06 23:46:43 +00:00
18 lines
300 B
Protocol Buffer
18 lines
300 B
Protocol Buffer
#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);
|