⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 win32.h

📁 关系型数据库 Postgresql 6.5.2
💻 H
字号:
#include <winsock.h>/* * strcasecmp() is not in Windows, stricmp is, though */#define strcasecmp(a,b) stricmp(a,b)#define SOCKET_SIZE_TYPE int/* * Some compat functions */#define open(a,b,c) _open(a,b,c)#define read(a,b,c) _read(a,b,c)#define write(a,b,c) _write(a,b,c)/* * crypt not available (yet) */#define crypt(a,b) a/* * Parts of config.h that you get with autoconf on other systems */#define DEF_PGPORT "5432"#define BLCKSZ 8192#define MAXIMUM_ALIGNOF 4

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -