1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
8 *
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
13 *
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright 2003 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
25 */
26
27 #pragma ident "%Z%%M% %I% %E% SMI"
28
29 /*
30 * this is a place holder file
31 * for the following functions.
32 * They should never be called
33 */
34 /* everything is in here */
35
36 #include <cimapi.h>
37 #include <cp_associator.h>
38
39 /* ARGSUSED */
40 CCIMInstanceList*
cp_enumInstances_libWBEMnfs(CCIMObjectPath * pOP)41 cp_enumInstances_libWBEMnfs(CCIMObjectPath* pOP)
42 {
43 return ((CCIMInstanceList*) NULL);
44 }
45
46 /* ARGSUSED */
47 CCIMObjectPathList*
cp_enumInstanceNames_libWBEMnfs(CCIMObjectPath * pOP)48 cp_enumInstanceNames_libWBEMnfs(CCIMObjectPath* pOP)
49 {
50 return ((CCIMObjectPathList*) NULL);
51 }
52
53 /* creates an instance */
54 /* ARGSUSED */
55 CCIMObjectPath*
cp_createInstance_libWBEMnfs(CCIMObjectPath * pOP,CCIMInstance * pInst)56 cp_createInstance_libWBEMnfs(CCIMObjectPath* pOP, CCIMInstance* pInst)
57 {
58 return ((CCIMObjectPath*)NULL);
59 }
60
61 /* ARGSUSED */
62 CCIMProperty*
cp_invokeMethod_libWBEMnfs(CCIMObjectPath * pOP,cimchar * pName,CCIMPropertyList * pInParams,CCIMPropertyList * pInOutParams)63 cp_invokeMethod_libWBEMnfs(CCIMObjectPath* pOP, cimchar* pName,
64 CCIMPropertyList* pInParams,
65 CCIMPropertyList* pInOutParams)
66 {
67 return ((CCIMProperty*)NULL);
68 }
69
70 /* ARGSUSED */
71 CIMBool
cp_setInstance_libWBEMnfs(CCIMObjectPath * pOP,CCIMInstance * pInst)72 cp_setInstance_libWBEMnfs(CCIMObjectPath* pOP, CCIMInstance* pInst)
73 {
74 return (cim_false);
75 }
76
77 /* ARGSUSED */
78 CCIMInstance *
cp_getInstance_libWBEMnfs(CCIMObjectPath * pOP)79 cp_getInstance_libWBEMnfs(CCIMObjectPath * pOP)
80 {
81 return ((CCIMInstance *)NULL);
82 }
83
84
85 /* deletes an instance */
86 /* ARGSUSED */
87 CIMBool
cp_deleteInstance_libWBEMnfs(CCIMObjectPath * pOP)88 cp_deleteInstance_libWBEMnfs(CCIMObjectPath *pOP)
89 {
90 return (cim_false);
91 }
92
93 /* ARGSUSED */
94 CIMBool
cp_setProperty_libWBEMnfs(CCIMObjectPath * pObjPath,CCIMProperty * pProp)95 cp_setProperty_libWBEMnfs(CCIMObjectPath* pObjPath, CCIMProperty* pProp)
96 {
97 return (cim_false);
98 }
99
100 /* ARGSUSED */
101 CCIMProperty*
cp_getProperty_libWBEMnfs(CCIMObjectPath * pOP,char * pPropName)102 cp_getProperty_libWBEMnfs(CCIMObjectPath *pOP, char *pPropName)
103 {
104 return ((CCIMProperty*) NULL);
105 }
106
107 /* ARGSUSED */
108 CCIMInstanceList*
cp_execQuery_libWBEMnfs(CCIMObjectPath * pOP,char * selectList,char * nonJoinExp,char * queryExp,char * queryType)109 cp_execQuery_libWBEMnfs(CCIMObjectPath *pOP, char *selectList,
110 char *nonJoinExp, char *queryExp, char *queryType)
111 {
112 return ((CCIMInstanceList *) NULL);
113 }
114
115 /* ARGSUSED */
116 CCIMInstanceList*
cp_associators_libWBEMnfs(CCIMObjectPath * pAssocName,CCIMObjectPath * pObjectName,char * pResultClass,char * pRole,char * pResultRole)117 cp_associators_libWBEMnfs(CCIMObjectPath *pAssocName,
118 CCIMObjectPath *pObjectName, char *pResultClass, char *pRole,
119 char *pResultRole)
120 {
121 return ((CCIMInstanceList *) NULL);
122 }
123
124 /* ARGSUSED */
125 CCIMObjectPathList*
cp_associatorNames_libWBEMnfs(CCIMObjectPath * pAssocName,CCIMObjectPath * pObjectName,char * pResultClass,char * pRole,char * pResultRole)126 cp_associatorNames_libWBEMnfs(CCIMObjectPath *pAssocName,
127 CCIMObjectPath *pObjectName, char *pResultClass, char *pRole,
128 char *pResultRole)
129 {
130 return ((CCIMObjectPathList *) NULL);
131 }
132
133 /* ARGSUSED */
134 CCIMInstanceList*
cp_references_libWBEMnfs(CCIMObjectPath * pAssocName,CCIMObjectPath * pObjectName,char * pRole)135 cp_references_libWBEMnfs(CCIMObjectPath *pAssocName,
136 CCIMObjectPath *pObjectName, char *pRole)
137 {
138 return ((CCIMInstanceList *) NULL);
139 }
140
141 /* ARGSUSED */
142 CCIMObjectPathList*
cp_referenceNames_libWBEMnfs(CCIMObjectPath * pAssocName,CCIMObjectPath * pObjectName,char * pRole)143 cp_referenceNames_libWBEMnfs(CCIMObjectPath *pAssocName,
144 CCIMObjectPath *pObjectName, char *pRole)
145 {
146 return ((CCIMObjectPathList *) NULL);
147 }
148