xref: /onnv-gate/usr/src/cmd/wbem/provider/c/wbem_disk/lib/localFunc.c (revision 0:68f95e015346)
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 2002 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_libWBEMdisk(CCIMObjectPath * pOP)41 cp_enumInstances_libWBEMdisk(CCIMObjectPath* pOP)
42 {
43 	return ((CCIMInstanceList*) NULL);
44 }
45 
46 /* ARGSUSED */
47 CCIMObjectPathList*
cp_enumInstanceNames_libWBEMdisk(CCIMObjectPath * pOP)48 cp_enumInstanceNames_libWBEMdisk(CCIMObjectPath* pOP)
49 {
50 	return ((CCIMObjectPathList*) NULL);
51 }
52 
53 /* creates an instance */
54 
55 /* ARGSUSED */
56 CCIMObjectPath*
cp_createInstance_libWBEMdisk(CCIMObjectPath * pOP,CCIMInstance * pInst)57 cp_createInstance_libWBEMdisk(CCIMObjectPath* pOP, CCIMInstance* pInst)
58 {
59 	return ((CCIMObjectPath*)NULL);
60 }
61 
62 /* ARGSUSED */
63 CCIMProperty*
cp_invokeMethod_libWBEMdisk(CCIMObjectPath * pOP,cimchar * pName,CCIMPropertyList * pInParams,CCIMPropertyList * pInOutParams)64 cp_invokeMethod_libWBEMdisk(CCIMObjectPath* pOP, cimchar* pName,
65 	CCIMPropertyList* pInParams,
66 	CCIMPropertyList* pInOutParams)
67 {
68 	return ((CCIMProperty*)NULL);
69 }
70 
71 /* ARGSUSED */
72 CIMBool
cp_setInstance_libWBEMdisk(CCIMObjectPath * pOP,CCIMInstance * pInst)73 cp_setInstance_libWBEMdisk(CCIMObjectPath* pOP, CCIMInstance* pInst)
74 {
75 	return (cim_false);
76 }
77 
78 /* ARGSUSED */
79 CCIMInstance *
cp_getInstance_libWBEMdisk(CCIMObjectPath * pOP)80 cp_getInstance_libWBEMdisk(CCIMObjectPath * pOP)
81 {
82 	return ((CCIMInstance *)NULL);
83 }
84 
85 
86 /* deletes an instance */
87 
88 /* ARGSUSED */
89 CIMBool
cp_deleteInstance_libWBEMdisk(CCIMObjectPath * pOP)90 cp_deleteInstance_libWBEMdisk(CCIMObjectPath *pOP)
91 {
92 	return (cim_false);
93 }
94 
95 /* ARGSUSED */
96 CIMBool
cp_setProperty_libWBEMdisk(CCIMObjectPath * pObjPath,CCIMProperty * pProp)97 cp_setProperty_libWBEMdisk(CCIMObjectPath* pObjPath, CCIMProperty* pProp)
98 {
99 	return (cim_false);
100 }
101 
102 /* ARGSUSED */
103 CCIMInstanceList*
cp_execQuery_libWBEMdisk(CCIMObjectPath * pOP,char * selectList,char * nonJoinExp,char * queryExp,char * queryType)104 cp_execQuery_libWBEMdisk(CCIMObjectPath *pOP, char *selectList,
105 	char *nonJoinExp, char *queryExp, char *queryType)
106 {
107 	return ((CCIMInstanceList *) NULL);
108 }
109 
110 /* ARGSUSED */
111 CCIMInstanceList*
cp_associators_libWBEMdisk(CCIMObjectPath * pAssocName,CCIMObjectPath * pObjectName,char * pResultClass,char * pRole,char * pResultRole)112 cp_associators_libWBEMdisk(CCIMObjectPath *pAssocName,
113     CCIMObjectPath *pObjectName, char *pResultClass, char *pRole,
114 	char *pResultRole)
115 {
116 	return ((CCIMInstanceList *) NULL);
117 }
118 
119 /* ARGSUSED */
120 CCIMObjectPathList*
cp_associatorNames_libWBEMdisk(CCIMObjectPath * pAssocName,CCIMObjectPath * pObjectName,char * pResultClass,char * pRole,char * pResultRole)121 cp_associatorNames_libWBEMdisk(CCIMObjectPath *pAssocName,
122     CCIMObjectPath *pObjectName, char *pResultClass, char *pRole,
123 	char *pResultRole)
124 {
125 	return ((CCIMObjectPathList *) NULL);
126 }
127 
128 /* ARGSUSED */
129 CCIMInstanceList*
cp_references_libWBEMdisk(CCIMObjectPath * pAssocName,CCIMObjectPath * pObjectName,char * pRole)130 cp_references_libWBEMdisk(CCIMObjectPath *pAssocName,
131     CCIMObjectPath *pObjectName, char *pRole)
132 {
133 	return ((CCIMInstanceList *) NULL);
134 }
135 
136 /* ARGSUSED */
137 CCIMObjectPathList*
cp_referenceNames_libWBEMdisk(CCIMObjectPath * pAssocName,CCIMObjectPath * pObjectName,char * pRole)138 cp_referenceNames_libWBEMdisk(CCIMObjectPath *pAssocName,
139     CCIMObjectPath *pObjectName, char *pRole)
140 {
141 	return ((CCIMObjectPathList *) NULL);
142 }
143