OSDN Git Service

add win/C# diff files
[handbrake-jp/handbrake-jp.git] / win / C# / Model / SourceType.cs.diff
diff --git a/win/C#/Model/SourceType.cs.diff b/win/C#/Model/SourceType.cs.diff
new file mode 100644 (file)
index 0000000..3360557
--- /dev/null
@@ -0,0 +1,40 @@
+diff --git a/win/C#/Model/SourceType.cs b/win/C#/Model/SourceType.cs
+new file mode 100644
+index 0000000..2081ce9
+--- /dev/null
++++ b/win/C#/Model/SourceType.cs
+@@ -0,0 +1,33 @@
++/*  SourceType.cs $\r
++    This file is part of the HandBrake source code.\r
++    Homepage: <http://handbrake.fr>.\r
++    It may be used under the terms of the GNU General Public License. */\r
++\r
++namespace Handbrake.Model\r
++{\r
++    /// <summary>\r
++    /// The Type of source that the user has scanned\r
++    /// </summary>\r
++    public enum SourceType\r
++    {\r
++        /// <summary>\r
++        /// No Source Selected\r
++        /// </summary>\r
++        None = 0, \r
++\r
++        /// <summary>\r
++        /// The soruce selected is a folder\r
++        /// </summary>\r
++        Folder, \r
++\r
++        /// <summary>\r
++        /// The source selected is a DVD drive\r
++        /// </summary>\r
++        DvdDrive, \r
++\r
++        /// <summary>\r
++        /// The source selected is a Video File\r
++        /// </summary>\r
++        VideoFile\r
++    }\r
++}
+\ No newline at end of file