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

📄 lsgetcur.cpp

📁 CBASE v1.01 采用Borland公司TC++编写的数据库管理源程序库
💻 CPP
字号:
/*	Copyright (c) 1989 Citadel	*/
/*	   All Rights Reserved    	*/

/* #ident	"@(#)lsgetcur.c	1.4 - 90/06/20" */

/* ansi headers */
#include <errno.h>
/*#include <string.h>*/

/* library headers */
#include <blkio.h>

/* local headers */
#include "lseq_.h"

/*man---------------------------------------------------------------------------
NAME
     lsgetcur - get lseq cursor

SYNOPSIS
     #include <lseq.h>

     int lsgetcur(lsp, lsposp)
     lseq_t *lsp;
     lspos_t *lsposp;

DESCRIPTION
     The lsgetcur function gets the current cursor position of lseq
     lsp and copies it to the location pointed to by lsposp.  A lseq
     position saved with lsgetcur can be used to reposition to a
     record using lssetcur.  It is important to remember that an lseq
     position saved with lsgetcur is not valid after that lseq has
     been unlocked.

     lsgetcur will fail if one or more of the following is true:

     [EINVAL]       lsp is not a valid lseq pointer.
     [EINVAL]       lsposp is the NULL pointer.
     [LSELOCK]      lsp is not locked.
     [LSENOPEN]     lsp is not open.

SEE ALSO
     lssetcur.

DIAGNOSTICS
     Upon successful completion, a value of 0 is returned.  Otherwise,
     a value of -1 is returned, and errno set to indicate the error.

------------------------------------------------------------------------------*/
int lsgetcur(lseq_t *lsp, lspos_t *lsposp)
{
	/* validate arguments */
	if (!ls_valid(lsp) || lsposp == NULL) {
		errno = EINVAL;
		return -1;
	}

	/* check if not open */
	if (!(lsp->flags & LSOPEN)) {
		errno = EINVAL;
		return -1;
	}

	/* check if not read locked */
	if (!(lsp->flags & LSLOCKS)) {
		errno = LSELOCK;
		return -1;
	}

	/* get current position */
	memcpy(lsposp, &lsp->clspos, sizeof(lsp->clspos));

	errno = 0;
	return 0;
}

⌨️ 快捷键说明

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