コード例 #1
0
 private static extern int INTERNAL_ov_open_callbacks(
     IntPtr datasource,
     IntPtr vf,
     IntPtr initial,
     IntPtr ibytes,
     ov_callbacks callbacks
     );
コード例 #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
                ));
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: dptetc/SharpASI
 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
                ));
 }
コード例 #4
0
ファイル: Program.cs プロジェクト: dptetc/SharpASI
 internal static extern int ov_open_callbacks(object datasource, object vf, ref string initial, int ibytes, ov_callbacks callbacks);
コード例 #5
0
ファイル: VorbisFile.cs プロジェクト: zwiglm/NeoAxisEngine
 static extern int ov_open_callbacks(IntPtr datasource, IntPtr vf,
                                     IntPtr initial, int ibytes, ov_callbacks callbacks);
コード例 #6
0
ファイル: VorbisFile.cs プロジェクト: zwiglm/NeoAxisEngine
 public int open_callbacks(IntPtr datasource, IntPtr initial, int ibytes, ov_callbacks callbacks)
 {
     return(ov_open_callbacks(datasource, native, initial, ibytes, callbacks));
 }
コード例 #7
0
ファイル: Vorbisfile.cs プロジェクト: glepag1/Vorbisfile-CS
    private static extern int INTERNAL_ov_open_callbacks(
		IntPtr datasource,
		IntPtr vf,
		IntPtr initial,
		IntPtr ibytes,
		ov_callbacks callbacks
	);
コード例 #8
0
ファイル: Vorbisfile.cs プロジェクト: glepag1/Vorbisfile-CS
    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
        );
    }