Files
EgtInterface/API_Nesting.cpp
T
Dario Sassi 10e170916e EgtInterface 1.6i4 :
- Set e Get per InfoDouble su entità
- aggiunte EgtGetFirstNameInGroup e sue derivate
- modificata EgtPackPart.
2015-09-07 08:24:30 +00:00

35 lines
1.1 KiB
C++

//----------------------------------------------------------------------------
// EgalTech 2015-2015
//----------------------------------------------------------------------------
// File : API_Nesting.cpp Data : 31.07.15 Versione : 1.6g9
// Contenuto : Funzioni nesting per API.
//
//
//
// Modifiche : 31.07.15 DS Creazione modulo.
//
//
//----------------------------------------------------------------------------
//--------------------------- Include ----------------------------------------
#include "stdafx.h"
#include "API.h"
#include "/EgtDev/Include/EInAPI.h"
#include "/EgtDev/Include/EXeExecutor.h"
using namespace std ;
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtCreateFlatParts( int nType)
{
return ( ExeCreateFlatParts( nType) ? TRUE : FALSE) ;
}
//-----------------------------------------------------------------------------
BOOL
__stdcall EgtPackPart( int nId, double dXmin, double dYmin, double dXmax, double dOffs)
{
return ( ExePackPart( nId, dXmin, dYmin, dXmax, dOffs) ? TRUE : FALSE) ;
}