WO101
- Last UpdatedMay 13, 2023
- 1 minute read
Name
WO101 - AutoSeq Interface routine - Is External AutoSeq Connected
Purpose
The procedure checks if an external AutoSeq algorithm has been connected.
Declaration
int wo101 ( void);
Result
The procedure returns TRUE if connected, otherwise FALSE.
- */
/*
External declarations
*/
extern "C"
{
#if !defined TBLSEQUENCEPLUGIN_API #define TBSEQUENCEPLUGIN_API
#endif
/*
*************************************************************
*
Main procedure - wo101
*************************************************************
*/
#ifdef WIN32 TBSEQUENCEPLUGIN_API
#endif
int wo101 ( void)
{
return 1;
}
}