home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2001 August - Disc 3
/
chip_20018103_hu.iso
/
amiga
/
chiputil
/
wipeout.lha
/
source
/
pubwipeoutsemaphore.h
< prev
next >
Wrap
C/C++ Source or Header
|
2001-02-10
|
1KB
|
50 lines
/*
* $Id$
*
* :ts=4
*
* Wipeout -- Traces and munges memory and detects memory trashing
*
* Written by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
* Public Domain
*/
#ifndef _PUBWIPEOUTSEMAPHORE_H
#define _PUBWIPEOUTSEMAPHORE_H 1
/****************************************************************************/
#include <utility/tagitem.h>
/****************************************************************************/
#define PUBWIPEOUTSEMAPHORENAME "½ Wipeout ╗"
#define PUBWIPEOUTSEMAPHOREVERSION 2
#define PUBWIPEOUTSEMAPHOREREVISION 1
/****************************************************************************/
typedef LONG (* __asm WipeoutControlFunc)(register __a0 struct TagItem *tags);
/****************************************************************************/
struct WipeoutSemaphore
{
struct SignalSemaphore ws_SignalSemaphore; /* regular semaphore */
WORD ws_Version; /* semaphore version number */
WORD ws_Revision; /* semaphore revision number */
WipeoutControlFunc ws_ControlFunc;
};
/****************************************************************************/
#define WOT_BASE (TAG_USER+20010602)
#define WOT_Address (WOT_BASE+1)
#define WOT_SetPC (WOT_BASE+2)
/****************************************************************************/
#endif /* _PUBWIPEOUTSEMAPHORE_H */