winhal.h

来自「一个简单而又高效的嵌入式操作系统.包括GUI及文件系统.仿Windows设计,类」· C头文件 代码 · 共 27 行

H
27
字号
// WinVM.h: interface for the WinVM class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_WINHAL_H__F05F4694_BD3D_4E7F_A0BE_81D121AD93A7__INCLUDED_)
#define AFX_WINHAL_H__F05F4694_BD3D_4E7F_A0BE_81D121AD93A7__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

extern void HAL_ENTRY(void);
extern void HAL_Beep(int nType);
extern void HAL_OnIdle(void);
extern void HAL_Unload(void);
extern void HAL_PIXEL(int x,int y,int c);
extern void HAL_FillRect(int x1,int y1,int x2,int y2,int nColor);
extern void HAL_Click(int x,int y,BOOL bDown);
extern "C" void HAL_CreateThread(int tcb,int sp1,int sp2,int pFunc);
extern "C" DWORD __stdcall GetTickCount();
extern "C" DWORD __stdcall Sleep(DWORD dwMilliseconds);
extern BOOL File_WriteBlock(LPVOID pBuf,int nBlock);
extern BOOL File_ReadBlock(LPVOID pBuf,int nBlock);
extern int nHalRegister;

#endif // !defined(AFX_WINHAL_H__F05F4694_BD3D_4E7F_A0BE_81D121AD93A7__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?