File: gtcmstub.c

package info (click to toggle)
fis-gtm 7.1-006-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 32,908 kB
  • sloc: ansic: 344,906; asm: 5,184; csh: 4,859; sh: 2,000; awk: 294; makefile: 73; sed: 13
file content (99 lines) | stat: -rw-r--r-- 1,798 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/****************************************************************
 *								*
 * Copyright (c) 2001-2021 Fidelity National Information	*
 * Services, Inc. and/or its subsidiaries. All rights reserved.	*
 *								*
 *	This source code contains the intellectual property	*
 *	of its copyright holder(s), and is made available	*
 *	under a license.  If you do not know the terms of	*
 *	the license, please stop and do not read further.	*
 *								*
 ****************************************************************/


/*** STUB FILE ***/
#include "mdef.h"
#include "gdsroot.h"
#include "gtm_facility.h"
#include "fileinfo.h"
#include "gdsbt.h"
#include "gdsfhead.h"
#include "parse_file.h"
#include "gvcmy_open.h"
#include "gvcmy_rundown.h"
#include "cmidef.h"
#include "hashtab_mname.h"	/* needed for cmmdef.h */
#include "cmmdef.h"
#include "gvcmx.h"
#include "gvcmz.h"
#include "mvalconv.h"

error_def(ERR_TEXT);
error_def(ERR_UNIMPLOP);

void gvcmy_rundown(void)
{
	return;
}

void gvcmy_open(gd_region *reg, parse_blk *nb)
{
	RTS_ERROR_ABT(VARLSTCNT(6) ERR_UNIMPLOP, 0, ERR_TEXT,
		2, LEN_AND_LIT("This utility does not support remote database operations"));
}

mint gvcmx_data(void)
{
	assert(FALSE);
	return -1;
}

bool gvcmx_get(mval *v)
{
	assert (FALSE);
	return(-1);
}

void gvcmx_kill(bool do_subtree)
{
	assert (FALSE);
}

bool gvcmx_order(void)
{
	assert (FALSE);
	return(-1);
}

void gvcmx_put(mval *v)
{
	assert(FALSE);
}

bool gvcmx_query(mval *val)
{
	assert (FALSE);
	return(-1);
}

void gvcmz_clrlkreq(void)
{
	assert (FALSE);
}

void gvcmx_unlock(unsigned char rmv_locks, bool specific, char incr)
{
	assert (FALSE);
}

bool gvcmx_zprevious(void)
{
        assert (FALSE);
        return(-1);
}

void	gvcmx_increment(mval *increment, mval *result)
{
	assert(FALSE);
	return;
}