Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5b56173538bf0b4b836490927a2cfe67e96a91dd (plain) (blame)
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
/*******************************************************************************
 * Copyright (c) 2000, 2007 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    IBM Corporation - initial API and implementation
 *******************************************************************************/

#ifdef NATIVE_STATS
extern int CDE_nativeFunctionCount;
extern int CDE_nativeFunctionCallCount[];
extern char* CDE_nativeFunctionNames[];
#define CDE_NATIVE_ENTER(env, that, func) CDE_nativeFunctionCallCount[func]++;
#define CDE_NATIVE_EXIT(env, that, func) 
#else
#ifndef CDE_NATIVE_ENTER
#define CDE_NATIVE_ENTER(env, that, func) 
#endif
#ifndef CDE_NATIVE_EXIT
#define CDE_NATIVE_EXIT(env, that, func) 
#endif
#endif

typedef enum {
	DtActionArg_1sizeof_FUNC,
	_1DtActionInvoke_FUNC,
	_1DtAppInitialize_FUNC,
	_1DtDbLoad_FUNC,
	_1DtDtsDataTypeIsAction_FUNC,
	_1DtDtsDataTypeNames_FUNC,
	_1DtDtsDataTypeToAttributeValue_FUNC,
	_1DtDtsFileToDataType_FUNC,
	_1DtDtsFreeAttributeValue_FUNC,
	_1DtDtsFreeDataType_FUNC,
	_1DtDtsFreeDataTypeNames_FUNC,
	_1XtAppCreateShell_FUNC,
	_1XtCreateApplicationContext_FUNC,
	_1XtDisplayInitialize_FUNC,
	_1XtRealizeWidget_FUNC,
	_1XtResizeWidget_FUNC,
	_1XtSetMappedWhenManaged_FUNC,
	_1XtToolkitInitialize_FUNC,
	_1topLevelShellWidgetClass_FUNC,
} CDE_FUNCS;

Back to the top