lsgetcur.cpp
来自「CBASE v1.01 采用Borland公司TC++编写的数据库管理源程序库」· C++ 代码 · 共 76 行
CPP
76 行
/* 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 + =
减小字号Ctrl + -
显示快捷键?