diff --git a/libmspack/mspack.cs b/libmspack/mspack.cs index c44aaea..2415166 100644 --- a/libmspack/mspack.cs +++ b/libmspack/mspack.cs @@ -87,26 +87,26 @@ namespace SabreTools.Compression.libmspack /// /// A custom mspack_system structure, or NULL to use the default /// A or NULL - public static mshlp_compressor mspack_create_hlp_compressor(mspack_system sys) => throw new NotImplementedException(); + public static mshlp_compressor mspack_create_hlp_compressor(mspack_system sys) => null; /// /// Creates a new HLP decompressor. /// /// A custom mspack_system structure, or NULL to use the default /// A or NULL - public static mshlp_decompressor mspack_create_hlp_decompressor(mspack_system sys) => throw new NotImplementedException(); + public static mshlp_decompressor mspack_create_hlp_decompressor(mspack_system sys) => null; /// /// Destroys an existing hlp compressor. /// /// The to destroy - public static void mspack_destroy_hlp_compressor(mshlp_compressor self) => throw new NotImplementedException(); + public static void mspack_destroy_hlp_compressor(mshlp_compressor self) { } /// /// Destroys an existing hlp decompressor. /// /// The to destroy - public static void mspack_destroy_hlp_decompressor(mshlp_decompressor self) => throw new NotImplementedException(); + public static void mspack_destroy_hlp_decompressor(mshlp_decompressor self) { } /// /// Creates a new SZDD compressor.