2003-07-24 08:19:20 +00:00
|
|
|
#ifndef ARCH_HOOKS_UNIX_H
|
|
|
|
|
#define ARCH_HOOKS_UNIX_H
|
|
|
|
|
|
|
|
|
|
#include "ArchHooks.h"
|
|
|
|
|
class ArchHooks_Unix: public ArchHooks
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ArchHooks_Unix();
|
2003-09-16 03:20:18 +00:00
|
|
|
void DumpDebugInfo();
|
2004-04-18 23:13:22 +00:00
|
|
|
|
|
|
|
|
void SetTime( tm newtime );
|
2003-07-24 08:19:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#undef ARCH_HOOKS
|
|
|
|
|
#define ARCH_HOOKS ArchHooks_Unix
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2003 by the person(s) listed below. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Glenn Maynard
|
|
|
|
|
*/
|