wafuncs.h
来自「mp3 频谱分析源码, mp3播放器开发必备源码,」· C头文件 代码 · 共 22 行
H
22 行
#if !defined(__WinAmpFuncs_H_)
#define __WinAmpFuncs_H_
#define PLAYING 1
#define PAUSED 3
#define WINAMP_CLASS "Winamp v1.x"
#define WINAMP_VIS_CLASS "WinampVis"
bool IsPlaying(HWND hWnd=NULL);
bool IsPaused(HWND hWnd=NULL);
bool KillUpdateTimers(HWND hWnd=NULL);
bool StartUpdateTimers(HWND hWnd=NULL);
bool ShowVisWindow(HWND hWnd=NULL);
bool HideVisWindow(HWND hWnd=NULL);
bool PointInRect(LPRECT lpRect, POINT& pt);
bool BitmapBlt(HDC hDCDest, HBITMAP hBit, int nLeft, int nTop);
bool BitmapResBlt(HWND hWnd, int nResID, HDC hDCDest, int nLeft, int nTop);
bool WritePrivateProfileInt(LPCSTR lpszApp, LPCSTR lpszKey, int nValue, LPCSTR lpszFileName);
bool BitmapBltEx(HDC hDestDC, HBITMAP hBitmap, int nLeft, int nTop, int nWidth, int nHeight, int nSrcLeft, int nSrcTop);
HBITMAP MakeScreenCompatibleBitmap(HBITMAP hBit, int nWidth, int nHeight);
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?