Ejemplo n.º 1
0
	CEXPORT bool UploadCrashProg(const char* file, const char* user, int build, int branch, DelegateI<Prog_s>* progress)
	{
		return UploadDump(file, user, build, branch, progress); 
	}
Ejemplo n.º 2
0
	CEXPORT bool UploadCrashProgEx(const char* file, const char* user, int build, int branch, DelegateI<Prog_s&>* progress, const char* szTracer)
	{
		return UploadDump(file, user, build, branch, progress, szTracer);
	}
Ejemplo n.º 3
0
	CEXPORT bool UploadCrash(const char* file, const char* user, int build, int branch)
	{
		return UploadDump(file, user, build, branch, NULL);
	}
Ejemplo n.º 4
0
	CEXPORT bool UploadCrashEx(const char* file, const char* user, int build, int branch, const char* szTracer)
	{
		return UploadDump(file, user, build, branch, nullptr, szTracer);
	}