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

📄 syblogin.h

📁 通用的数据库中间库
💻 H
字号:
/* ORIGINAL_SCCSID:  Sccsid @(#) syblogin.h 8.1 8/10/93  *//* Sccsid %Z% %M% %I% %G% *//***	Sybase DB-LIBRARY Version 5.0**	Confidential Property of Sybase, Inc.**	(c) Copyright Sybase, Inc. 1988, 1992**	All rights reserved****** Use, duplication, or disclosure by the Government** is subject to restrictions as set forth in subparagraph (c) (1) (ii)** of the Rights in Technical Data and Computer Software clause** at DFARS 52.227-7013. Sybase, Inc. 6475 Christie Avenue, Emeryville,** CA 94608.**** History**** 001  12JAN94   Added prototypes for strict ANSI compilation		sureshk*/#ifndef __syblogin__#define __syblogin__/*** This structure was used by applications connecting with 1.0 Secure Server.** It is now here only, so that such applications do not break.*/typedef struct seclab{        short   slhier;        BYTE    slcomp[8];        short   slstatus;} SECLAB;#define DB_MAX_LABELLEN	255/*** Openserver include file srv.h needs this define*/#define DBPROGNLEN	10typedef struct Securepair{        struct Securepair	*next;        char		*labelname;        char		*labelvalue;} SECLABELS;/*** Function Prototype for ANSI compilation*/#if ((COMPILE_STYLE == ANSI_C_COMPILE) || (COMPILE_STYLE == CPP_COMPILE) || defined(FORCE_PROTOTYPES))CS_START_EXTERN_Ctypedef RETCODE	(CS_PUBLIC *DB_LRESPONSE_FUNC)PROTOTYPE((				CS_VOID *dbproc,				BYTE *challenge,				CS_INT challenge_len,				CS_VOID *data,				BYTE *response_len));CS_END_EXTERN_C#elsetypedef RETCODE	(CS_PUBLIC *DB_LRESPONSE_FUNC)();#endiftypedef struct loginrec{	DBVOIDPTR	ltds_loginrec;	SECLABELS	*labels;	DB_LRESPONSE_FUNC	lresponse_func;	/* login response function */} LOGINREC;#endif /* __syblogin__ */

⌨️ 快捷键说明

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