📄 sqlunix.h
字号:
/*************************************************************************\
** source * sqlunix.h
** directory *
** description * Defines to let applications compile on non-NT platforms
** with SQL.H, SQLUCODE.H.
** *
** author * Archana K.
** date * 12/23/99
** *
** * (C) Copyright Solid Information Technology Ltd 1998-1999
**************************************************************************/
#ifndef __SQL_UNIX_H__
#define __SQL_UNIX_H__
#if !defined(SS_NT) && !defined(SS_WCE)
#ifdef SS_CRX
#include <runetype_f.h>
#elif SS_FBX==5
# include <wchar.h>
# define _WCHAR_T_DEFINED 1
#include <runetype.h>
#elif defined(SS_VXW)
#define wchar_t unsigned short
#elif defined(SS_OSE)
#include <stddef.h>
#define _WCHAR_T_DEFINED 1
/* #define wchar_t int */
#elif defined(SS_BSI)
#include <rune.h>
#else
#include <wchar.h>
# ifndef _WCHAR_T_DEFINED
# define _WCHAR_T_DEFINED 1
# endif
#endif
#ifndef DWORD
#if defined(UNIX_64BIT)
# define DWORD int
#else
# define DWORD long
#endif
#endif
#ifndef WCHAR
#define WCHAR wchar_t
#endif
#ifndef LPWSTR
#define LPWSTR WCHAR *
#endif
#ifndef VOID
#define VOID void
#endif
#ifndef BOOL
#define BOOL unsigned char
#endif
#ifndef Widget
#define Widget unsigned long
#endif
#ifndef WORD
#define WORD short int
#endif
#ifndef BYTE
#define BYTE unsigned char
#endif
#ifndef CHAR
#define CHAR unsigned char
#endif
#ifndef GUID
#define GUID unsigned long
#endif
#endif /* not for nt platform */
#endif /* SQL_UNIX_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -