winbas.h
来自「MinGUI 可视化程序代码」· C头文件 代码 · 共 21 行
H
21 行
//---------------------------------------------------------------------------
#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 + =
减小字号Ctrl + -
显示快捷键?