| |
// / This HTML file was produced by the ProjectPublisher WebService, By Asaf Shelly / //
// / WebService URL is: http://Services.AsyncOp.com/ProjectPublisher/ProjectPublisherWSvc.asmx / //
// / Learn more and find the source code here: http://AsyncOp.com / //
// LoggerAPI.h : Pseudo Logger API
//
#pragma once
#include <Windows.h>
#include <StdIO.h>
////////////////////////////////////////
///
// LOG HELPER
void Log(char* obj, char* info);
void Log(char* obj, char* info, int val);
#ifdef _DEBUG
#define Err(X) { Log(X); throw(X); }
#else
#define Err(X) { Log(X); }
#endif
|
|
|