📄 bwavefile.h
字号:
/*
Author: Bear
This source is free to anybody.
If you have any problem with this or some advice to me, please:
mailto: heyang22118952.student@sina.com
or yang45249.student@sina.com
or you can contact me through my QQ: 261570581
Welcome to discuss game programming techniques with me :)
And I like to play games!
*/
#pragma once
#include "BHeader.h"
class BDLL_API BWaveFile
{
public:
BWaveFile(void);
~BWaveFile(void);
bool Load(char* fileName);
void UnLoad(void);
int GetBufferSize(void);
UCHAR* GetBuffer(void);
private:
UCHAR *buffer; // sound buffer to hold voc data
int bufSize;
bool loaded;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -