diff --git a/BurnOutSharp/External/libmspack/Library.cs b/BurnOutSharp/External/libmspack/Library.cs
index 0540b0b2..31b5ed33 100644
--- a/BurnOutSharp/External/libmspack/Library.cs
+++ b/BurnOutSharp/External/libmspack/Library.cs
@@ -133,7 +133,7 @@ using LibMSPackSharp.Compression;
namespace LibMSPackSharp
{
- public partial class Library
+ public static class Library
{
#region CAB
@@ -142,7 +142,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public CAB.Compressor CreateCABCompressor(SystemImpl sys)
+ public static CAB.Compressor CreateCABCompressor(SystemImpl sys)
{
// TODO
return null;
@@ -153,7 +153,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public CAB.Decompressor CreateCABDecompressor(SystemImpl sys)
+ public static CAB.Decompressor CreateCABDecompressor(SystemImpl sys)
{
if (sys == null)
sys = SystemImpl.DefaultSystem;
@@ -185,7 +185,7 @@ namespace LibMSPackSharp
/// Destroys an existing CAB compressor.
///
/// the to destroy
- public void DestroyCABCompressor(CAB.Compressor c)
+ public static void DestroyCABCompressor(CAB.Compressor c)
{
// TODO
}
@@ -194,7 +194,7 @@ namespace LibMSPackSharp
/// Destroys an existing CAB decompressor.
///
/// the to destroy
- public void DestroyCABDecompressor(CAB.Decompressor d)
+ public static void DestroyCABDecompressor(CAB.Decompressor d)
{
CAB.DecompressorImpl self = (CAB.DecompressorImpl)d;
if (self != null)
@@ -222,7 +222,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public CHM.Compressor CreateCHMCompressor(SystemImpl sys)
+ public static CHM.Compressor CreateCHMCompressor(SystemImpl sys)
{
// TODO
return null;
@@ -233,7 +233,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public CHM.Decompressor CreateCHMDecompressor(SystemImpl sys)
+ public static CHM.Decompressor CreateCHMDecompressor(SystemImpl sys)
{
if (sys == null)
sys = SystemImpl.DefaultSystem;
@@ -258,7 +258,7 @@ namespace LibMSPackSharp
/// Destroys an existing CHM compressor.
///
/// the to destroy
- public void DestroyCHMCompressor(CHM.Compressor c)
+ public static void DestroyCHMCompressor(CHM.Compressor c)
{
// TODO
}
@@ -267,7 +267,7 @@ namespace LibMSPackSharp
/// Destroys an existing CHM decompressor.
///
/// the to destroy
- public void DestroyCHMDecompressor(CHM.Decompressor d)
+ public static void DestroyCHMDecompressor(CHM.Decompressor d)
{
CHM.DecompressorImpl self = (CHM.DecompressorImpl)d;
if (self != null)
@@ -296,7 +296,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public LIT.Compressor CreateLITCompressor(SystemImpl sys)
+ public static LIT.Compressor CreateLITCompressor(SystemImpl sys)
{
// TODO
return null;
@@ -307,7 +307,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public LIT.Decompressor CreateLITDecompressor(SystemImpl sys)
+ public static LIT.Decompressor CreateLITDecompressor(SystemImpl sys)
{
// TODO
return null;
@@ -317,7 +317,7 @@ namespace LibMSPackSharp
/// Destroys an existing LIT compressor.
///
/// the to destroy
- public void DestroyLITCompressor(LIT.Compressor c)
+ public static void DestroyLITCompressor(LIT.Compressor c)
{
// TODO
}
@@ -326,7 +326,7 @@ namespace LibMSPackSharp
/// Destroys an existing LIT decompressor.
///
/// the to destroy
- public void DestroyLITDecompressor(LIT.Decompressor d)
+ public static void DestroyLITDecompressor(LIT.Decompressor d)
{
// TODO
}
@@ -340,7 +340,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public HLP.Compressor CreateHLPCompressor(SystemImpl sys)
+ public static HLP.Compressor CreateHLPCompressor(SystemImpl sys)
{
// TODO
return null;
@@ -351,7 +351,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public HLP.Decompressor CreateHLPDecompressor(SystemImpl sys)
+ public static HLP.Decompressor CreateHLPDecompressor(SystemImpl sys)
{
// TODO
return null;
@@ -361,7 +361,7 @@ namespace LibMSPackSharp
/// Destroys an existing HLP compressor.
///
/// the to destroy
- public void DestroyHLPCompressor(HLP.Compressor c)
+ public static void DestroyHLPCompressor(HLP.Compressor c)
{
// TODO
}
@@ -370,7 +370,7 @@ namespace LibMSPackSharp
/// Destroys an existing HLP decompressor.
///
/// the to destroy
- public void DestroyHLPDecompressor(HLP.Decompressor d)
+ public static void DestroyHLPDecompressor(HLP.Decompressor d)
{
// TODO
}
@@ -384,7 +384,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public SZDD.Compressor CreateSZDDCompressor(SystemImpl sys)
+ public static SZDD.Compressor CreateSZDDCompressor(SystemImpl sys)
{
// TODO
return null;
@@ -395,7 +395,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public SZDD.Decompressor CreateSZDDDecompressor(SystemImpl sys)
+ public static SZDD.Decompressor CreateSZDDDecompressor(SystemImpl sys)
{
if (sys == null)
sys = SystemImpl.DefaultSystem;
@@ -418,7 +418,7 @@ namespace LibMSPackSharp
/// Destroys an existing SZDD compressor.
///
/// the to destroy
- public void DestroySZDDCompressor(SZDD.Compressor c)
+ public static void DestroySZDDCompressor(SZDD.Compressor c)
{
// TODO
}
@@ -427,7 +427,7 @@ namespace LibMSPackSharp
/// Destroys an existing SZDD decompressor.
///
/// the to destroy
- public void DestroySZDDDecompressor(SZDD.Decompressor d)
+ public static void DestroySZDDDecompressor(SZDD.Decompressor d)
{
SZDD.DecompressorImpl self = (SZDD.DecompressorImpl)d;
if (self != null)
@@ -446,7 +446,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public KWAJ.Compressor CreateKWAJCompressor(SystemImpl sys)
+ public static KWAJ.Compressor CreateKWAJCompressor(SystemImpl sys)
{
// TODO
return null;
@@ -457,7 +457,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public KWAJ.Decompressor CreateKWAJDecompressor(SystemImpl sys)
+ public static KWAJ.Decompressor CreateKWAJDecompressor(SystemImpl sys)
{
if (sys == null)
sys = SystemImpl.DefaultSystem;
@@ -480,7 +480,7 @@ namespace LibMSPackSharp
/// Destroys an existing KWAJ compressor.
///
/// the to destroy
- public void DestroyKWAJCompressor(KWAJ.Compressor c)
+ public static void DestroyKWAJCompressor(KWAJ.Compressor c)
{
// TODO
}
@@ -489,7 +489,7 @@ namespace LibMSPackSharp
/// Destroys an existing KWAJ decompressor.
///
/// the to destroy
- public void DestroyKWAJDecompressor(KWAJ.Decompressor d)
+ public static void DestroyKWAJDecompressor(KWAJ.Decompressor d)
{
KWAJ.DecompressorImpl self = (KWAJ.DecompressorImpl)d;
if (self != null)
@@ -508,7 +508,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public OAB.Compressor CreateOABCompressor(SystemImpl sys)
+ public static OAB.Compressor CreateOABCompressor(SystemImpl sys)
{
// TODO
return null;
@@ -519,7 +519,7 @@ namespace LibMSPackSharp
///
/// a custom SystemImpl structure, or null to use the default
/// a or null
- public OAB.Decompressor CreateOABDecompressor(SystemImpl sys)
+ public static OAB.Decompressor CreateOABDecompressor(SystemImpl sys)
{
if (sys == null)
sys = SystemImpl.DefaultSystem;
@@ -540,7 +540,7 @@ namespace LibMSPackSharp
/// Destroys an existing OAB compressor.
///
/// the to destroy
- public void DestroyOABCompressor(OAB.Compressor c)
+ public static void DestroyOABCompressor(OAB.Compressor c)
{
// TODO
}
@@ -549,7 +549,7 @@ namespace LibMSPackSharp
/// Destroys an existing OAB decompressor.
///
/// the to destroy
- public void DestroyOABDecompressor(OAB.Decompressor d)
+ public static void DestroyOABDecompressor(OAB.Decompressor d)
{
OAB.DecompressorImpl self = (OAB.DecompressorImpl)d;
if (self != null)