23 lines
369 B
C++
23 lines
369 B
C++
#ifndef ARCH_HOOKS_UNIX_H
|
|
#define ARCH_HOOKS_UNIX_H
|
|
|
|
#include "ArchHooks.h"
|
|
class ArchHooks_Unix: public ArchHooks
|
|
{
|
|
public:
|
|
ArchHooks_Unix();
|
|
void DumpDebugInfo();
|
|
|
|
void SetTime( tm newtime );
|
|
};
|
|
|
|
#undef ARCH_HOOKS
|
|
#define ARCH_HOOKS ArchHooks_Unix
|
|
|
|
#endif
|
|
/*
|
|
* Copyright (c) 2003 by the person(s) listed below. All rights reserved.
|
|
*
|
|
* Glenn Maynard
|
|
*/
|