29 lines
920 B
C
29 lines
920 B
C
/*=========================================================================
|
|
*
|
|
* VseSave.h - saving functions for VSE file
|
|
*
|
|
* Version 1.0
|
|
* Revision date
|
|
*
|
|
*=======================================================================*/
|
|
#ifndef VSESAVE_H
|
|
#define VSESAVE_H
|
|
|
|
|
|
//--- Includes --------------------------------------------------------
|
|
|
|
#include "SCR.h"
|
|
|
|
|
|
//--- Functions ---------------------------------------------------------
|
|
|
|
// sections
|
|
extern void MLT_vSaveVseFile (SCR_tdst_File_Description *p_stFile, char *sFileName, void *p_vPtr, SCR_tde_Ntfy_Action xAction);
|
|
extern void MLT_vSaveVisualSet (SCR_tdst_File_Description *p_stFile, char *sFileName, void *p_vPtr, SCR_tde_Ntfy_Action xAction);
|
|
extern void MLT_vSaveLod (SCR_tdst_File_Description *p_stFile, char *sFileName, void *p_vPtr, SCR_tde_Ntfy_Action xAction);
|
|
// notify
|
|
extern long MLT_lSaveLodInFile (char *sVisualSetName);
|
|
|
|
|
|
|
|
#endif // VSESAVE_H
|