views:

153

answers:

2

I'm looking for LZSS for decoding some packets from a game engine. If anyone could point me to a library I would be extremely happy. Thanks!

+1  A: 

You can call on the Allegro Library (open source library in C developed for game development). It contains LZSS decoding and is callable from C#.

Or you can also look at: LZSS.c and port it over to C#, or compile it into a basic C library and then call it from C#.

NebuSoft
Could you give an example if it being called from the library? Also can this be embedded into the C# executable? Thanks a bunch!
Gbps
A: 

Did you try JCALG1?

kzen