📄 os.hhf
字号:
#if( ! @defined( os_hhf ))?os_hhf := true;namespace os; // Note: os.win32, os.linux, os.bsd, and os.mac specify the operating // system in use. This file must be manually edited as appropriate // for use under Windows, Linux, freeBSD, or Mac OSX so that these // constants contain the appropriate values. const linux := @global:true; win32 := @global:false; freeBSD := @global:false; macOS := @global:false; qnx := @global:false; procedure system( cmdLn :string ); @external( "OS_SYSTEM" ); procedure sleep( secs :dword ); @external( "OS_SLEEP" ); procedure mSleep( msecs :dword ); @external( "OS_MSLEEP" ); #macro exitProcess( rtnCode ); mov( rtnCode, ebx ); mov( 1, eax ); int( $80 ); #endmacro end os; #endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -