Exemplo n.º 1
0
 /// <summary>
 /// Dispose the instance of TVGW_RIFF_File
 /// </summary>
 public void Dispose(ref TVGW_RIFF_File filedata)
 {
     UnmanagedMethods.tvgw_Dispose(ref filedata);
 }
Exemplo n.º 2
0
 public static extern void tvgw_Dispose(ref TVGW_RIFF_File filedata);
Exemplo n.º 3
0
 public static extern int tvgw_WriteFile(string filename, ref TVGW_RIFF_File filedata);
Exemplo n.º 4
0
 /// <summary>
 /// Write the content to the file
 /// </summary>
 public static int WriteFile(string filename, ref TVGW_RIFF_File filedata)
 {
     return(UnmanagedMethods.tvgw_WriteFile(filename, ref filedata));
 }
Exemplo n.º 5
0
 /// <summary>
 /// Load all contents of the RIFF file
 /// </summary>
 public int LoadFile(string filename, ref TVGW_RIFF_File filedata)
 {
     return(UnmanagedMethods.tvgw_LoadFile(filename, ref filedata));
 }