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