📄 wincolorref.c
字号:
#include "extcode.h"
#include <windows.h>
_declspec(dllexport) void WinCOLORREF(COLORREF input, COLORREF *output);
_declspec(dllexport) void WinCOLORREF(COLORREF input, COLORREF *output)
{
if(input == 0x000000) /* black */
*output = 0xFF0000; /* blue */
else
*output = 0x00FF00; /* green */
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -