48 lines
910 B
C
48 lines
910 B
C
/*ISI_Int.h*/
|
|
|
|
#ifndef __ISI_INT
|
|
#define __ISI_INT
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/* For DLL using these function :*/
|
|
#undef CPA_EXPORT
|
|
#if defined(CPA_WANTS_IMPORT)
|
|
#define CPA_EXPORT __declspec(dllimport)
|
|
#elif defined(CPA_WANTS_EXPORT)
|
|
#define CPA_EXPORT __declspec(dllexport)
|
|
#else
|
|
#define CPA_EXPORT
|
|
#endif
|
|
|
|
/*End of declaration of structure*/
|
|
|
|
/*Declaration of structure*/
|
|
typedef struct ISI_tdstISILOD_
|
|
{
|
|
ACP_tdxIndex xNbVertexRLI;
|
|
ISI_tdstColor * d_stVertexRLI;
|
|
}ISI_tdstISILOD;
|
|
/*End of declaration of structure*/
|
|
|
|
/*Declaration of structure*/
|
|
typedef struct ISI_tdstISI_
|
|
{
|
|
ACP_tdxIndex xNbISILOD;
|
|
ISI_tdstISILOD * d_stISILOD;
|
|
}ISI_tdstISI;
|
|
/*End of declaration of structure*/
|
|
|
|
|
|
/*Declaration of handle*/
|
|
typedef struct ISI_tdstISI_* ISI_HandleToISI;
|
|
/*End of declaration of handle*/
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /*__ISI_INT*/
|