예제 #1
0
 /// <summary>
 /// Dispose the instance of TVGW_RIFF_File
 /// </summary>
 public void Dispose(ref TVGW_RIFF_File filedata)
 {
     UnmanagedMethods.tvgw_Dispose(ref filedata);
 }
예제 #2
0
 public static extern void tvgw_Dispose(ref TVGW_RIFF_File filedata);
예제 #3
0
 public static extern int tvgw_WriteFile(string filename, ref TVGW_RIFF_File filedata);
예제 #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));
 }
예제 #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));
 }