-
Notifications
You must be signed in to change notification settings - Fork 0
/
vd.h
51 lines (41 loc) · 1.3 KB
/
vd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* Copyright (C) 2009-2011 Przemyslaw Pawelczyk <[email protected]>
*
* This software is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2.
* See <http://www.gnu.org/licenses/gpl-2.0.txt>.
*
* This software is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
/** \file vd.h
* Virtual Disk common stuff.
*/
#ifndef VD_H
#define VD_H
#include <inttypes.h>
/** VD operations that can be supported.
*
* All functions take file descriptor as first argument.
* Following arguments depend on the operation.
*/
typedef struct vd_ops {
/* detect(int fd) */
int (*detect)(int);
/**< Detects whether image seems to conform VD type. */
/* info(int fd) */
void (*info)(int);
/**< Logs information about the image. */
/* resize(int fd_in, int fd_out, uint32_t new_size_in_mb) */
int (*resize)(int, int, uint32_t);
/**< Resizes the image. */
} vd_ops_t;
/** VD type definition. */
typedef struct vd_type {
char *ext; /**< Common file extension. */
char *name; /**< Name. */
vd_ops_t ops; /**< Operations. */
} vd_type_t;
#endif /* VD_H */