27 lines
747 B
C
27 lines
747 B
C
/*=========================================================================
|
|
*
|
|
* ObjSave.h - Saving functions for OBJ file
|
|
*
|
|
* Version 1.0
|
|
* Revision date
|
|
*
|
|
*=======================================================================*/
|
|
#ifndef OBJSAVE_H
|
|
#define OBJSAVE_H
|
|
|
|
//--- Includes --------------------------------------------------------
|
|
|
|
#include "SCR.h"
|
|
|
|
#include "typedef.h"
|
|
|
|
|
|
//--- Functions --------------------------------------------------------
|
|
|
|
// save
|
|
extern void MLT_vSaveObjHeader (SCR_tdst_File_Description *p_stFile, char *sFileName, void *p_vPtr, SCR_tde_Ntfy_Action xAction);
|
|
extern void MLT_vSaveObjFile (SCR_tdst_File_Description *p_stFile, char *sFileName, void *p_vPtr, SCR_tde_Ntfy_Action xAction);
|
|
|
|
|
|
#endif // OBJSAVE_H
|