Version 2.02.68 -
===============================
+ Allow use of lvm2app and lvm2cmd headers in C++ mode.
Fix wrong lvm path creation from configure introduced in previous release.
Fix segfault in clvmd -R if no response from daemon received.
Version 1.02.50 -
===============================
+ Allow use of devmapper header file in C++ mode.
Version 1.02.49 - 4th June 2010
===============================
/*
* Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
- * Copyright (C) 2004-2007 Red Hat, Inc. All rights reserved.
+ * Copyright (C) 2004-2010 Red Hat, Inc. All rights reserved.
*
* This file is part of the device-mapper userspace tools.
*
#include <stdlib.h>
#include <stdio.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
+
/*****************************************************************
* The first section of this file provides direct access to the
* individual device-mapper ioctls. Since it is quite laborious to
const char heading[32]; /* string printed in header */
int (*report_fn)(struct dm_report *rh, struct dm_pool *mem,
struct dm_report_field *field, const void *data,
- void *private);
+ void *private_data);
const char *desc; /* description of the field */
};
const char *output_separator,
uint32_t output_flags,
const char *sort_keys,
- void *private);
+ void *private_data);
int dm_report_object(struct dm_report *rh, void *object);
int dm_report_output(struct dm_report *rh);
void dm_report_free(struct dm_report *rh);
#define DM_DEV_DIR_UMASK 0022
+#ifdef __cplusplus
+}
+#endif
#endif /* LIB_DEVICE_MAPPER_H */
const char *output_separator,
uint32_t output_flags,
const char *sort_keys,
- void *private)
+ void *private_data)
{
struct dm_report *rh;
const struct dm_report_object_type *type;
rh->separator = output_separator;
rh->fields = fields;
rh->types = types;
- rh->private = private;
+ rh->private = private_data;
rh->flags |= output_flags & DM_REPORT_OUTPUT_MASK;
#include <stdint.h>
+#ifdef __cplusplus
+extern "C" {
+#endif
/******************************** WARNING ***********************************
*
*/
int lvm_pv_resize(const pv_t pv, uint64_t new_size);
+#ifdef __cplusplus
+}
+#endif
#endif /* _LIB_LVM2APP_H */
#ifndef _LVM_CMDLIB_H
#define _LVM_CMDLIB_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
#ifndef _LVM_LOG_H
typedef void (*lvm2_log_fn_t) (int level, const char *file, int line,
int dm_errno, const char *message);
/* Release handle */
void lvm2_exit(void *handle);
+#ifdef __cplusplus
+}
+#endif
#endif