cpk-tools/LibCRIComp/LibCRIComp.h
2024-12-19 15:05:55 +08:00

14 lines
222 B
C++

// 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);
};
}