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