Update of /cvsroot/sblim/sfcc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4484
Modified Files:
cmci.h
Log Message:
Index: cmci.h
===================================================================
RCS file: /cvsroot/sblim/sfcc/cmci.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- cmci.h 2 May 2005 15:31:49 -0000 1.1.1.1
+++ cmci.h 4 May 2005 18:18:28 -0000 1.2
@@ -22,9 +22,9 @@
#ifndef _CMPIC_H_
#define _CMPIC_H_
-#include "cmpidt.h"
-#include "cmpift.h"
-#include "cmpimacs.h"
+#include "cmcidt.h"
+#include "cmcift.h"
+#include "cmcimacs.h"
#include "utilList.h"
#ifdef __cplusplus
@@ -173,7 +173,7 @@
@return Enumeration of Instances.
*/
CMPIEnumeration* (*associators)
- (CMCIClient* cl,CMPIContext* ctx,
+ (CMCIClient* cl,
CMPIObjectPath* op, const char *assocClass, const char *resultClass,
const char *role, const char *resultRole, char** properties, CMPIStatus* rc);
@@ -291,7 +291,7 @@
@return Property value.
*/
CMPIData (*getProperty)
- (CMCIClient *cl, CMPIContext *ctx,
+ (CMCIClient *cl,
CMPIObjectPath *op, const char *name, CMPIStatus *rc);
} CMCIClientFT;
@@ -299,7 +299,6 @@
typedef struct clientData {
char *hostName;
char *port;
- UtilList *nameSpace;
char *user;
char *pwd;
char *scheme;
@@ -311,7 +310,7 @@
CMCIClientFT *ft;
};
-CMCIClient *cmciConnect(const char *hn, const char *port, const char *ns,
+CMCIClient *cmciConnect(const char *hn, const char *port,
const char *user, const char *pwd, CMPIStatus *rc);
#ifdef __cplusplus
|