wdefwin.mh
来自「开放源码的编译器open watcom 1.6.0版的源代码」· MH 代码 · 共 34 行
MH
34 行
/*
* wdefwin.h default windowing calls
*
:include crwat.sp
*/
#ifndef _WDEFWIN_H_INCLUDED
#define _WDEFWIN_H_INCLUDED
:include readonly.sp
:include cpluspro.sp
#ifndef __SW_BW
#error wdefwin.h is for use the default windowing system, use the /bw switch
#endif
#ifndef _COMDEF_H_INCLUDED
#include <_comdef.h>
#endif
#if ( defined(__OS2__) && (defined(__386__)||defined(__PPC__)) ) || defined(__NT__) || \
defined(__WINDOWS_386__) || defined(__WINDOWS__)
_WCRTLINK extern int _dwDeleteOnClose( int handle );
_WCRTLINK extern int _dwSetAboutDlg( const char *title, const char *text );
_WCRTLINK extern int _dwSetAppTitle( const char *title );
_WCRTLINK extern int _dwSetConTitle( int handle, const char *title );
_WCRTLINK extern int _dwYield( void );
_WCRTLINK extern int _dwShutDown( void );
#else
#error You cannot use the default windowing system in a non GUI environment
#error Make sure you use the /bt= switch to select the target system
#endif
:include cplusepi.sp
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?