コード例 #1
0
 private static extern string libvlc_video_get_aspect_ratio(VlcInputHandle p_input, VlcExceptionHandle p_exception);
コード例 #2
0
 private static extern void libvlc_log_close(VlcLogHandle log, VlcExceptionHandle ex);
コード例 #3
0
 private static extern IntPtr libvlc_exception_get_message(VlcExceptionHandle ex);
コード例 #4
0
 private static extern VlcLogHandle libvlc_log_open(VlcInstanceHandle engine, VlcExceptionHandle ex);
コード例 #5
0
 private static extern void libvlc_set_log_verbosity(VlcInstanceHandle engine, uint value, VlcExceptionHandle ex);
コード例 #6
0
ファイル: VlcLogEnum.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern VlcLogEnumHandle libvlc_log_get_iterator(VlcLogHandle log, VlcExceptionHandle _excp);
コード例 #7
0
ファイル: VlcLogEnum.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern IntPtr libvlc_log_iterator_next(VlcLogEnumHandle iter, ref libvlc_log_message_t buffer, VlcExceptionHandle _excp);
コード例 #8
0
 private static extern void libvlc_audio_set_volume(VlcInstanceHandle engine, int volume, VlcExceptionHandle exception);
コード例 #9
0
 private static extern void libvlc_audio_toggle_mute(VlcInstanceHandle p_instance, VlcExceptionHandle p_exception);
コード例 #10
0
 private static extern VlcInstanceHandle libvlc_new(int argc, string[] args, VlcExceptionHandle ex);
コード例 #11
0
 private static extern int libvlc_audio_get_volume(VlcInstanceHandle engine, VlcExceptionHandle exception);
コード例 #12
0
 private static extern void libvlc_video_take_snapshot(
     VlcInputHandle p_input,
     [MarshalAs(UnmanagedType.LPStr)]
     string file_name,
     VlcExceptionHandle p_exception);
コード例 #13
0
 private static extern void libvlc_toggle_fullscreen(VlcInputHandle p_input, VlcExceptionHandle p_exception);
コード例 #14
0
 private static extern void libvlc_video_set_aspect_ratio(
     VlcInputHandle p_input,
     [MarshalAs(UnmanagedType.LPStr)] string aspect_ratio,
     VlcExceptionHandle p_exception);
コード例 #15
0
ファイル: VlcPlaylist.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern int libvlc_playlist_add(VlcInstanceHandle engine, string uri, string name, VlcExceptionHandle ex);
コード例 #16
0
 private static extern bool libvlc_audio_get_mute(VlcInstanceHandle p_instance, VlcExceptionHandle p_exception);
コード例 #17
0
ファイル: VlcPlaylist.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern int libvlc_playlist_delete_item(VlcInstanceHandle engine, int item, VlcExceptionHandle ex);
コード例 #18
0
 private static extern void libvlc_audio_set_mute(VlcInstanceHandle p_instance, bool b, VlcExceptionHandle p_exception);
コード例 #19
0
ファイル: VlcLogEnum.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern int libvlc_log_iterator_has_next(VlcLogEnumHandle iter, VlcExceptionHandle _excp);
コード例 #20
0
 private static extern void libvlc_video_set_parent(VlcInstanceHandle p_instance, IntPtr window, VlcExceptionHandle p_exception);
コード例 #21
0
ファイル: VlcLogEnum.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern void libvlc_log_iterator_free(VlcLogEnumHandle iter, VlcExceptionHandle _excp);
コード例 #22
0
ファイル: VlcPlaylist.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern void libvlc_playlist_play(VlcInstanceHandle p_instance, Int32 i, Int32 i2, [MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.LPStr)] string[] a, VlcExceptionHandle _excp);
コード例 #23
0
 private static extern uint libvlc_get_log_verbosity(VlcInstanceHandle engine, VlcExceptionHandle ex);
コード例 #24
0
ファイル: VlcPlaylist.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern int libvlc_playlist_isplaying(VlcInstanceHandle engine, VlcExceptionHandle ex);
コード例 #25
0
 private static extern uint libvlc_log_count(VlcLogHandle log, VlcExceptionHandle ex);
コード例 #26
0
ファイル: VlcPlaylist.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern int libvlc_playlist_items_count(VlcInstanceHandle engine, VlcExceptionHandle ex);
コード例 #27
0
 private static extern int libvlc_exception_raised(VlcExceptionHandle ex);
コード例 #28
0
ファイル: VlcPlaylist.cs プロジェクト: mvtcode/libvlc-sharp
 private static extern void libvlc_playlist_clear(VlcInstanceHandle engine, VlcExceptionHandle ex);
コード例 #29
0
 private static extern void libvlc_exception_clear(VlcExceptionHandle p_exception);
コード例 #30
0
 private static extern int libvlc_video_get_width(VlcInputHandle p_input, VlcExceptionHandle p_exception);