Files
sicspsi/amordrive.h
koennecke 8a1a808fe5 - Fixed bugs in sinqhttp.c, most notatbly the unknown error on hm init
- Added first slit to amorset
- Added untested code for the POLDI strees machine
2006-11-24 15:52:51 +00:00

26 lines
735 B
C

/*--------------------------------------------------------------------
Part of the AMOR position calculation module.
copyright: see file COPYRIGHT
Mark Koennecke, October 2005
----------------------------------------------------------------------*/
#ifndef AMORDRIVE
#define AMORDRIVE
typedef struct{
pObjectDescriptor pDes;
pIDrivable pDriv;
pamorSet mama;
int type;
} amorDrive, *pamorDrive;
/*-----------------------------------------------------------------*/
pamorDrive makeAmorDrive(pamorSet papa, int type);
void killAmorDrive(void *data);
int AmorDriveAction(SConnection *pCon, SicsInterp *pSics, void *pData,
int argc, char *argv[]);
#endif