- Adapted indenation to new agreed upon system

- Added support for second generation scriptcontext based counter
This commit is contained in:
koennecke
2009-02-13 09:00:03 +00:00
parent a3dcad2bfa
commit 91d4af0541
405 changed files with 88101 additions and 88173 deletions

View File

@ -26,24 +26,24 @@
#define eEndServer 6
/* ---------------- server side functions ---------------------------------*/
void ServerStopInterrupt(void);
void ServerStopInterrupt(void);
/*
stops interrupt processing.
*/
void SetInterrupt(int iCode);
stops interrupt processing.
*/
void SetInterrupt(int iCode);
/*
send an interrupt to everybody
*/
send an interrupt to everybody
*/
/*------------------------------ utility ----------------------------------*/
int Interrupt2Text(int iInterrupt, char *text, int iTextLen);
int Text2Interrupt(char *text);
int Interrupt2Text(int iInterrupt, char *text, int iTextLen);
int Text2Interrupt(char *text);
/* --------------------- client side functions ----------------------------*/
int ClientSetupInterrupt(char *host, int iPort);
void ClientStopInterrupt(void);
void SendInterrupt( int iCode);
int ClientSetupInterrupt(char *host, int iPort);
void ClientStopInterrupt(void);
void SendInterrupt(int iCode);
#endif