📄 docking.h
字号:
// Header file for docking code. This file & its cpp file contain
// a couple of functions to make docking with winamp really easy.
#if !defined(__Docking_H_)
#define __Docking_H_
#ifndef WIN32_LEAN_AND_MEAN
#define WIN32_LEAN_AND_MEAN
#endif
#include <windows.h>
// Winamp Window Class Names
#define WINAMP_MAIN "Winamp v1.x"
#define WINAMP_EQ "Winamp EQ"
#define WINAMP_PE "Winamp PE"
#define WINAMP_MB "Winamp MB"
// docks hwnd with winamp only
void winamp_dock(HWND hwnd, int* x, int* y, int sd);
// docks hwnd with a list of rectangles
void rect_list_dock(HWND hwnd, int* x, int* y, int sd, LPRECT ar_rect, int rects);
// dock thing
bool is_docked_winamp(HWND hwnd, int x, int y);
//
bool is_docked_list(HWND hwnd, int x, int y, LPRECT ar_rect, int nrects);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -