27 lines
766 B
C
27 lines
766 B
C
#ifndef GLI_LINES_H
|
|
#define GLI_LINES_H
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/* For DLL using these function :*/
|
|
#include "cpa_expt.h"
|
|
/***************************************************************************************/
|
|
/* Name: GLI_xDraw3DLine16 */
|
|
/* Goal: project,clip & draw a 3d line */
|
|
/* Code: Elie Khoury / 1.0*/
|
|
/* OPTIMMIZED : no*/
|
|
/***************************************************************************************/
|
|
extern CPA_EXPORT void
|
|
GLI_xDraw3DLine16 ( struct GLD_tdstViewportAttributes_ *p_stVpt,
|
|
MTH3D_tdstVector *,
|
|
MTH3D_tdstVector *,
|
|
long lColor );
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* GLI_LINES_H*/
|