?? mrcdplayer.h
字號:
/* 'mrCDPlayer.h' */
/* Mirus base types header */
#include "mrDatatypes.h"
/* Mirus error definitions header */
#include "mrError.h"
/* Standard input/output header file */
#include <stdio.h>
/* Windows header file */
#include <windows.h>
/* Windows Multimedia header file */
#include <mmsystem.h>
/* Include this file only once */
#pragma once
/* Mirus CD Player class */
class mrCDPlayer
{
protected:
/* CD information */
mrUInt32 m_iNumberTracks;
mrUInt32 m_iCurrentTrack;
mrInt8 m_szLength [256];
public:
/* Constructors / Destructor */
mrCDPlayer (void);
~mrCDPlayer (void);
/* CD player manipulation routines */
void Eject (void);
void Play (mrUInt32 iTrack);
void Stop (void);
void Update (void);
/* CD player maintenance routines */
mrUInt32 GetNumberOfTracks (void);
mrInt8 * GetLength (void);
mrUInt32 GetCurrentTrack (void);
mrBool32 IsReady (void);
};
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -