コード例 #1
0
void
CArchDaemonWindows::daemonFailed(int result)
{
	// if s_daemon is NULL we assume we're running on the windows
	// 95 family and we just ignore this call so the caller doesn't
	// have to go through the trouble of not calling it on the
	// windows 95 family.
	if (s_daemon != NULL) {
		throw XArchDaemonRunFailed(result);
	}
}
コード例 #2
0
void
ArchDaemonWindows::daemonFailed(int result)
{
	assert(s_daemon != NULL);
	throw XArchDaemonRunFailed(result);
}