25 lines
727 B
C
25 lines
727 B
C
/*=========================================================================
|
|
*
|
|
* IPOSave.h - IPO saving functions
|
|
*
|
|
* Version 1.0
|
|
* Revision date
|
|
*
|
|
*=======================================================================*/
|
|
#ifndef IPOSAVE_H
|
|
#define IPOSAVE_H
|
|
|
|
|
|
//--- Includes --------------------------------------------------------
|
|
|
|
#include "SCR.h"
|
|
|
|
|
|
//--- Functions --------------------------------------------------------
|
|
|
|
// saving functions
|
|
extern void MLT_vSaveIpoFile (SCR_tdst_File_Description *p_stFile, char *sFileName, void *p_vPtr, SCR_tde_Ntfy_Action xAction);
|
|
extern void MLT_vSaveIpoSection (SCR_tdst_File_Description *p_stFile, char *sFileName, void *p_vPtr, SCR_tde_Ntfy_Action xAction);
|
|
|
|
|
|
#endif //IPOSAVE_H
|