?? nclog.h
字號:
//nclog.h
extern void nclog (const wchar_t *fmt, ...);
extern bool set_nclog_port(unsigned short x); // { return wsa_bind(x); }
/*
usage:
nclog(L"The Window Handle is: %x\n",hwnd);
On your desktop, you need netcat to capture the output from your
program, i.e. you open a console and type:
netcat -lup 9998
This will instruct netcat to show you everything that comes to your UDP
socket 9998 (which is the default for netcat). Since nclog opens the
socket in broadcast mode, you don't have to give an target adress. (Be
sure to select a port which does not interfer with the network you are
living in)
*/
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -