From 6dbe6dbcbcd5f09228445d6a198d6523ef1721d8 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 19 Sep 2023 10:38:00 -0400 Subject: [PATCH] Add everything from hlpc/hlpd --- libmspack/mspack.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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.