PSI sics-cvs-psi_pre-ansto

This commit is contained in:
2003-06-13 00:00:00 +00:00
committed by Douglas Clowes
parent 2e3ddfb6c6
commit 3ffd0d8af4
1099 changed files with 318432 additions and 0 deletions

36
token.h Normal file
View File

@@ -0,0 +1,36 @@
/*---------------------------------------------------------------
S I C S T O K E N
This is the header file for the SICS token management
functions. It implements the token command.
Mark Koennecke, January 1998
copyright: see copyright.h
----------------------------------------------------------------*/
#ifndef SICSTOKEN
#define SICSTOKEN
int TokenInit(SConnection *pCon, SicsInterp *pSics,
void *pData, int argc, char *argv[]);
/*
The Token Factory function.
*/
int TokenWrapper(SConnection *pCon, SicsInterp *pSics,
void *pData, int argc, char *argv[]);
/*
The wrapper function for the token command.
*/
int TokenGrabActive(void);
/*
Returns 1, if a token grab is active, else 0
*/
void TokenRelease(void);
/*
Releases a Token Grab
*/
#endif