📄 os.h
字号:
//*********************************************************************************
// OS.h
// part of Real Magic RTSP filter
// thyne richards 2/00
//*********************************************************************************
#ifndef _OS_H
#define _OS_H
#include "rmstruct.h"
#ifdef __cplusplus
extern "C" {
#endif
STATUS OSFlushScreen ();
void dprintf (char *szMsg, ...);
DWORD WINAPI OSKeepAlive (void*);
BOOL OSReceive (struct tagIRtsp*, SOCKET, int, BYTE *, LONG , LONG *, CONN_DATA *);
#define OSdprintf dprintf
#define OSsprintf sprintf
#define OSmalloc malloc
#define OSfree free
#define OS_stricmp _stricmp
#define OSsscanf sscanf
#define OSstrlen strlen
#define OSstrchr strchr
#define OSstrncpy strncpy
#define OSstrcpy strcpy
#define OSstrstr strstr
#define OSmemcmp memcmp
#define itoa _itoa
#ifdef _DEBUG
#define DEBUG_PRINT(x) OSdprintf x
#else
#define DEBUG_PRINT(x)
#endif
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -