27 lines
685 B
C
27 lines
685 B
C
/* Handle module : Fake functions for GMT */
|
|
/* Add here functions which have to be declared in order to link */
|
|
/* Copyright 1997 Ubi research */
|
|
/* See Alain Robin for any remark or question */
|
|
|
|
#ifdef _HDL_FOR_A3D
|
|
#pragma message ("Compile Hdl_Gmt.c for A3D settings")
|
|
|
|
/* Here, we have fake functions for A3D compilation */
|
|
|
|
void DNM_fn_vInvalidateMatCharacteristics(void* _pvCrap)
|
|
{
|
|
/* Fake function : Compiled without DNM */
|
|
}
|
|
|
|
void DNM_fn_vInitLoadMecMatCharacteristics(void)
|
|
{
|
|
/* Fake function : Compiled without DNM */
|
|
}
|
|
|
|
#else
|
|
#pragma message ("Compile Hdl_Gmt.c for 3DOS settings")
|
|
|
|
/* Here, we have fake functions for 3DOS compilation */
|
|
|
|
#endif /*_HDL_FOR_3DOS*/
|