Convert uses of XKeycodeToKeysym (deprecated) to XkbKeycodeToKeysym
[oweals/cde.git] / cde / lib / DtSearch / raima / cmtype.c
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these libraries and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: cmtype.c /main/2 1996/05/09 03:56:24 drk $ */
24 /*
25  *   COMPONENT_NAME: austext
26  *
27  *   FUNCTIONS: d_cmtype
28  *
29  *   ORIGINS: 157
30  *
31  *   OBJECT CODE ONLY SOURCE MATERIALS
32  */
33 /*-----------------------------------------------------------------------
34    cmtype.c -- db_VISTA member type module.
35
36    (C) Copyright 1987 by Raima Corporation.
37 -----------------------------------------------------------------------*/
38
39 /* ********************** EDIT HISTORY *******************************
40
41  SCR    DATE    INI                   DESCRIPTION
42 ----- --------- --- -----------------------------------------------------
43   103 24-Jun-88 RSC Improve generation of single-user version
44       04-Aug-88 RTK MULTI_TASK changes
45
46 */
47
48 #include <stdio.h>
49 #include "vista.h"
50 #include "dbtype.h"
51
52 /* Get current member type
53 */
54 int
55 d_cmtype(int set, int *cmtype, int dbn)
56 {
57    char *mrec;
58    INT crt;
59    SET_ENTRY *set_ptr;
60
61    DB_ENTER(DB_ID TASK_ID LOCK_SET(SET_IO));
62
63    if (nset_check(set, &set, (SET_ENTRY **)&set_ptr) != S_OKAY)
64       RETURN( db_status );
65
66    if ( ! curr_mem[set] )
67       RETURN( dberr( S_NOCM ) );
68
69
70    /* Read current member */
71    dio_read(curr_mem[set], (char **)&mrec, NOPGHOLD);
72    if (db_status != S_OKAY)
73       RETURN( db_status );
74
75    /* Fetch record type from record header */
76    bytecpy(&crt, mrec, sizeof(INT));
77    *cmtype = (int)crt + RECMARK;
78
79    RETURN( db_status );
80 }
81 /* vpp -nOS2 -dUNIX -nBSD -nVANILLA_BSD -nVMS -nMEMLOCK -nWINDOWS -nFAR_ALLOC -f/usr/users/master/config/nonwin cmtype.c */