mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
20 lines
359 B
C
20 lines
359 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the LGPL.
|
|
*/
|
|
|
|
#include "text-rep.h"
|
|
|
|
struct volume_group *text_vg_import(struct pool *mem, struct config_file *cf)
|
|
{
|
|
log_err("text_vg_import not implemented yet.");
|
|
return NULL;
|
|
}
|
|
|
|
struct config_file *text_vg_export(struct pool *mem, struct volume_group *vg)
|
|
{
|
|
|
|
}
|
|
|