📄 winbas.h
字号:
//---------------------------------------------------------------------------
#ifndef _WINBASE_H
#define _WINBASE_H
//---------------------------------------------------------------------------
#include "windefs.h"
//---------------------------------------------------------------------------
int StrToInt(char *data);
void FloatToStr(char *strbuf,int iw,int fw,float fd);
void IntToStr(char *strbuf,int data);
int strcasecmp(const char *s1, const char *s2);
void DrawFrame(HDC dc,int left,int top,int width,int height,int focused,BOOL DownOrUp);
void Draw3dShadow(HDC hDC,int x,int y,int w,int h,TCOLOR crTop,TCOLOR crBottom);
void Draw3dBox(HDC hDC,int x,int y,int w,int h,TCOLOR crTop,TCOLOR crBottom);
void Draw3dInset(HDC hDC,int x,int y,int w,int h);
void Draw3dOutset(HDC hDC,int x,int y,int w,int h);
void InitRandom(unsigned long seed);
int GenRandom(int max);
unsigned long GenRandomWord(void);
//---------------------------------------------------------------------------
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -