cpk-tools/LibCRIComp/LibCRIComp.h

14 lines
222 B
C
Raw Normal View History

2024-12-19 15:05:55 +08:00
// LibCRIComp.h
#pragma once
using namespace System;
namespace LibCRIComp {
public ref class CriCompression
{
public:static int CRIcompress(unsigned char *dest, int *destLen, unsigned char *src, int srcLen);
};
}