Exemple #1
0
 private static extern int INTERNAL_ov_open_callbacks(
     IntPtr datasource,
     IntPtr vf,
     IntPtr initial,
     IntPtr ibytes,
     ov_callbacks callbacks
     );
Exemple #2
0
 public static int ov_open_callbacks(
     IntPtr datasource,              // Refers to a void*
     out IntPtr vf,
     IntPtr initial,                 // Refers to a char*
     IntPtr ibytes,                  // Refers to a long, ignoring Win64!
     ov_callbacks callbacks
     )
 {
     vf = AllocVorbisFile();
     return(INTERNAL_ov_open_callbacks(
                datasource,
                vf,
                initial,
                ibytes,
                callbacks
                ));
 }
Exemple #3
0
 public static int ov_open_callbacks(
     IntPtr datasource,
     out IntPtr vf,
     IntPtr initial,
     IntPtr ibytes,
     ov_callbacks callbacks
     )
 {
     vf = AllocVorbisFile();
     return(INTERNAL_ov_open_callbacks(
                datasource,
                vf,
                initial,
                ibytes,
                callbacks
                ));
 }
Exemple #4
0
 internal static extern int ov_open_callbacks(object datasource, object vf, ref string initial, int ibytes, ov_callbacks callbacks);
Exemple #5
0
 static extern int ov_open_callbacks(IntPtr datasource, IntPtr vf,
                                     IntPtr initial, int ibytes, ov_callbacks callbacks);
Exemple #6
0
 public int open_callbacks(IntPtr datasource, IntPtr initial, int ibytes, ov_callbacks callbacks)
 {
     return(ov_open_callbacks(datasource, native, initial, ibytes, callbacks));
 }
Exemple #7
0
    private static extern int INTERNAL_ov_open_callbacks(
		IntPtr datasource,
		IntPtr vf,
		IntPtr initial,
		IntPtr ibytes,
		ov_callbacks callbacks
	);
Exemple #8
0
    public static int ov_open_callbacks(
		IntPtr datasource,	// Refers to a void*
		out IntPtr vf,
		IntPtr initial,		// Refers to a char*
		IntPtr ibytes,		// Refers to a long, ignoring Win64!
		ov_callbacks callbacks
	)
    {
        vf = AllocVorbisFile();
        return INTERNAL_ov_open_callbacks(
            datasource,
            vf,
            initial,
            ibytes,
            callbacks
        );
    }