nclog.h
来自「evc4 console app that monitors battery s」· C头文件 代码 · 共 22 行
H
22 行
//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 + =
减小字号Ctrl + -
显示快捷键?