~ubuntu-branches/ubuntu/utopic/sblim-sfcc/utopic-proposed

« back to all changes in this revision

Viewing changes to frontend/sfcc/native.h

  • Committer: Bazaar Package Importer
  • Author(s): Thierry Carrez
  • Date: 2009-08-19 14:41:55 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090819144155-jb46y5kmluacii70
Tags: 2.2.0-0ubuntu1
* New upstream version.
* debian/libcimcclient0.install: Ship missing libcmpisfcc library
* debian/control:
  - Switch to libcurl4-openssl-dev to match the rest of the SBLIM stack
  - Bump debhelper depend to >=5 to match debian/compat
  - Fix section names, add missing ${misc:Depends}
* debian/copyright: Add missing copyright notice
* debian/rules: Removed spurious DH_MAKESHLIBS argument

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
  http://www.opensource.org/licenses/eclipse-1.0.php
20
20
 
21
21
  \author Frank Scheffler
22
 
  $Revision: 1.1 $
 
22
  $Revision: 1.2 $
23
23
*/
24
24
 
25
25
#ifndef _REMOTE_CMPI_NATIVE_DATA_H
37
37
// #include "cimXmlParser.h"
38
38
 
39
39
 
 
40
/* ************************************************** */
 
41
/*                                                    */
 
42
/* ************************************************** */
 
43
 
 
44
#ifndef LARGE_VOL_SUPPORT 
 
45
struct native_enum {
 
46
        CMPIEnumeration enumeration;
 
47
 
 
48
        CMPICount current;
 
49
        CMPIArray * data;
 
50
};
 
51
#else
 
52
struct native_enum {
 
53
        CMPIEnumeration enumeration;
 
54
 
 
55
        CMPICount current;
 
56
        CMPIArray * data;
 
57
        CMCIConnection * econ;
 
58
        CMPIObjectPath * ecop;
 
59
};
 
60
#endif
 
61
 
40
62
//! Forward declaration for anonymous struct.
41
63
struct native_property;
42
64
struct native_qualifier;