// Syncify // // Douglas Thrift // // $Id$ #include "Syncify.hpp" #include #include int Main(const app::Options& options) { // _foreach (const app::ArgumentList, arg, app::GetArguments()) { if (*arg == "-D") Syncify::debug = true; else { api::Cerr << "Usage: " << Syncify::program << " [-D]" << ios::NewLine; return 1; } } // return 0; } extern "C" { void authenticate(const char* srv, const char* shr, char* wg, int wglen, char* un, int unlen, char* pw, int pwlen) {} } ext::String Syncify::program(api::GetExecutablePath().GetName()); bool Syncify::debug(false);