29 lines
900 B
C
29 lines
900 B
C
/*=========================================================================
|
|
* IPT_Hdl.h : Structure des fonctions d'entrées
|
|
*
|
|
* Version 1.0
|
|
* Creation date 01/04/97
|
|
* Revision date
|
|
*
|
|
* (c) Ubi Studios 1997
|
|
*=======================================================================*/
|
|
|
|
#if !defined(__IPT_Hdl_H__)
|
|
#define __IPT_Hdl_H__
|
|
|
|
/******************************************/
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif /* _MSC_VER >= 1000 */
|
|
/******************************************/
|
|
|
|
/***********************/
|
|
/**** Handle define ****/
|
|
/***********************/
|
|
typedef struct IPT_tdstEntryElement_ * IPT_tdxHandleToEntryElement;
|
|
typedef struct IPT_tdstInput_ * IPT_tdxHandleToInput;
|
|
typedef struct IPT_tdstKeyWordElement_ * IPT_tdxHandleToKeyWordElement;
|
|
typedef struct IPT_tdstHistoricElement_ * IPT_tdxHandleToHistoricElement;
|
|
|
|
#endif /* __IPT_Hdl_H__ */
|