From 113488b7940795ab88d6c2e3d5ab0980ff4fe5af Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 22 Feb 2009 16:31:37 +0200 Subject: [PATCH] Version informations --- bindings/cil/src/instance.cs | 1 + bindings/cil/src/media.cs | 12 +++++++----- bindings/cil/src/player.cs | 11 +++++++++-- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/bindings/cil/src/instance.cs b/bindings/cil/src/instance.cs index 901c4409b3..1a119a8e75 100644 --- a/bindings/cil/src/instance.cs +++ b/bindings/cil/src/instance.cs @@ -147,6 +147,7 @@ namespace VideoLAN.LibVLC /** * The unmanaged VLC-internal instance object. * Do not use this unless you really know what you are doing. + * @version VLC 1.0 */ public SafeHandle Object { diff --git a/bindings/cil/src/media.cs b/bindings/cil/src/media.cs index 5c3b0cf24a..60a61d9bee 100644 --- a/bindings/cil/src/media.cs +++ b/bindings/cil/src/media.cs @@ -91,16 +91,17 @@ namespace VideoLAN.LibVLC /** * Add VLC input item options to the media. - * @param options VLC options in VLC input item format - * (see example below) - * @param trusted whether the options are set by a trusted agent - * (e.g. the local computer configuration) or not - * (e.g. a downloaded file). * @code * Media m = new Media(vlc, "http://www.example.com/music.ogg"); * m.AddOptions(":http-user-agent=LibVLC.Net " * + ":http-proxy=proxy:8080", true); * @endcode + * @param options VLC options in VLC input item format + * (see example below) + * @param trusted whether the options are set by a trusted agent + * (e.g. the local computer configuration) or not + * (e.g. a downloaded file). + * @version VLC 0.9.9 if trusted is false */ public void AddOptions (string options, bool trusted) { @@ -115,6 +116,7 @@ namespace VideoLAN.LibVLC /** * The media location (file path, URL, ...). + * @version VLC 1.0 */ public string Location { diff --git a/bindings/cil/src/player.cs b/bindings/cil/src/player.cs index 431b9dedf5..bfd622d274 100644 --- a/bindings/cil/src/player.cs +++ b/bindings/cil/src/player.cs @@ -108,6 +108,7 @@ namespace VideoLAN.LibVLC /** * Whether the player is currently active. + * @version VLC 1.0 */ public bool IsPlaying { @@ -155,8 +156,8 @@ namespace VideoLAN.LibVLC * playback is not started or stopped; live reparenting might not * work. * - * Warning: - * If the identifier is invalid, Xlib might abort the process. + * @warning If the identifier is invalid, Xlib might abort the process. + * @version VLC 1.0 */ public int XWindow { @@ -178,6 +179,7 @@ namespace VideoLAN.LibVLC * supports one of DirectDraw, Direct3D, GDI or OpenGL/Win32. * Note that you should set/change/unset the window while playback is * not started or stopped; live reparenting might not work. + * @version VLC 1.0 */ public SafeHandle HWND { @@ -285,6 +287,7 @@ namespace VideoLAN.LibVLC /** * Gets the number of chapters within a given title. * @param title media title number + * @version VLC 1.0 */ public int GetChapterCountByTitle (int title) { @@ -295,6 +298,7 @@ namespace VideoLAN.LibVLC /** * Number of the current title. + * @version VLC 1.0 */ public int Title { @@ -313,6 +317,7 @@ namespace VideoLAN.LibVLC /** * Total number of titles. + * @version VLC 1.0 */ public int TitleCount { @@ -326,6 +331,7 @@ namespace VideoLAN.LibVLC /** * Skips to the beginning of the next chapter. + * @version VLC 1.0 */ public void NextChapter () { @@ -335,6 +341,7 @@ namespace VideoLAN.LibVLC /** * Rewinds to the previous chapter. + * @version VLC 1.0 */ public void PreviousChapter () { -- 2.39.2