WO021
- Last UpdatedMay 12, 2023
- 1 minute read
Name
WO021 - AutoNest Interface routine - Get Unnested Parts
Purpose
The procedure gets the parts which were not nested on the basis of the given reason.
Declaration
void wo021( const int RemainedPartNo, int& PartNo,
int& QuantityNormal, int& QuantityMirror, int& ReasonFlag);
Input
Parameters:
|
RemainedPartNo |
The identification number for the remained part |
Result
Parameters:
|
PartNo |
The identification number for the part |
||
|
QuantityNormal |
The quantity of remained normal image parts |
||
|
QuantityMirror |
The quantity of remained mirrored image parts |
||
|
ReasonFlag |
The reason flag: |
||
|
0 |
= |
unspecified |
|
|
1 |
= |
no raw plate exists for this property |
|
|
2 |
= |
not enough raw plates for this property |
|
|
3 |
= |
the part does not fit on plate (too big) |
|
/
/*
External declarations
*/
extern "C"
{
#if !defined TBLAYOUTPLUGIN_API #define TBLAYOUTPLUGIN_API
#endif
/*
**********************************************************************
Main procedure - wo021
**********************************************************************
*/
#ifdef WIN32 TBLAYOUTPLUGIN_API
#endif
void wo021( const int /* RemainedPartNo */, int& /* PartNo */,
int& /* QuantityNormal */, int& /* QuantityMirror */, int& /* ReasonFlag */)
{
}
}