Skip to content

Commit

Permalink
2006-06-21 Jeffrey Stedfast <fejj@novell.com>
Browse files Browse the repository at this point in the history
        * SCSharp/SCSharp.Mpq.Smk/BitStream.cs: Removed unused
        * variables.
        (Reset): Instead of resetting the unused variables mCurrent and
        mBitCount variables to 0 (which aren't used anywhere else in the
        code), set mCurrentByte and mCurrentBit to 0, which is probably
        what the author originally intended.

        * SCSharp/SCSharp.Mpq.Smk/Smk.cs: Reindented - some lines seemed
        to use 8-space indents and others seemed to use 4, and even
others
        used tab. Made everything use a uniform 4-space indent like the
        other files in this directory.

        * SCSharp/SCSharp.Mpq.Smk/SmkDecoder.cs: Removed unused
        variables. Reindented the tables at the top too, as they were
        weirdly indented in all of my editors (Emacs and MSVS).

        * SCSharp.sln: Microsoft Visual Studio Solution file for SCSharp

        * SCSharp.csproj: Project file for scsharp.exe

        * SCSharp/SCSharp.dll.csproj: Project file for SCSharp.dll

        * SCSharp/SCSharp.Smk.dll.csproj: Project file for
        * SCSharp.Smk.dll

        * SCSharp/SCSharp.UI.dll.csproj: Project file for SCSharp.UI.dll



git-svn-id: svn+ssh://scsharp.hungry.com/svn/scsharp/trunk@419 ea3e6beb-b7ab-da11-bdaa-00e0814018bc
  • Loading branch information
jeff committed Jun 27, 2006
1 parent 97d51b2 commit 37b4d6e
Show file tree
Hide file tree
Showing 18 changed files with 1,352 additions and 267 deletions.
27 changes: 27 additions & 0 deletions ChangeLog
@@ -1,3 +1,30 @@
2006-06-21 Jeffrey Stedfast <fejj@novell.com>

* SCSharp/SCSharp.Mpq.Smk/BitStream.cs: Removed unused variables.
(Reset): Instead of resetting the unused variables mCurrent and
mBitCount variables to 0 (which aren't used anywhere else in the
code), set mCurrentByte and mCurrentBit to 0, which is probably
what the author originally intended.

* SCSharp/SCSharp.Mpq.Smk/Smk.cs: Reindented - some lines seemed
to use 8-space indents and others seemed to use 4, and even others
used tab. Made everything use a uniform 4-space indent like the
other files in this directory.

* SCSharp/SCSharp.Mpq.Smk/SmkDecoder.cs: Removed unused
variables. Reindented the tables at the top too, as they were
weirdly indented in all of my editors (Emacs and MSVS).

* SCSharp.sln: Microsoft Visual Studio Solution file for SCSharp

* SCSharp.csproj: Project file for scsharp.exe

* SCSharp/SCSharp.dll.csproj: Project file for SCSharp.dll

* SCSharp/SCSharp.Smk.dll.csproj: Project file for SCSharp.Smk.dll

* SCSharp/SCSharp.UI.dll.csproj: Project file for SCSharp.UI.dll

2006-06-25 Chris Toshok <toshok@hungry.com>

* tools/: add a couple of tools: lsmpq.exe to list the contents of
Expand Down
66 changes: 66 additions & 0 deletions Properties/AssemblyInfo.cs
@@ -0,0 +1,66 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SCSharp")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SCSharp")]
[assembly: AssemblyCopyright("Copyright © 2006")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("a5595746-1d5f-41c9-a3ca-c3313854fe3c")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SCSharp")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SCSharp")]
[assembly: AssemblyCopyright("Copyright © 2006")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("a5595746-1d5f-41c9-a3ca-c3313854fe3c")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
142 changes: 142 additions & 0 deletions Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 37b4d6e

Please sign in to comment.