wave.h
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:0k
源码类别:

其他游戏

开发平台:

Visual C++

  1. #ifndef WAVE_H
  2. #define WAVE_H
  3. typedef union {
  4. unsigned short *pw;
  5. unsigned char *pb;
  6. } byte_and_short;
  7. int libmpq_wave_decompress(unsigned char *out_buf, int out_length, unsigned char *in_buf, int in_length, int channels);
  8. int libmpq_huff_do_decompress(struct huffman_tree *ht, struct huffman_input_stream *is, unsigned char *out_buf, unsigned int out_length);
  9. #endif