aboutsummaryrefslogtreecommitdiff
path: root/include/msvmmaj_init.h
blob: febfb4a2c46281d31faf3c4f0a09676269860b4f (plain)
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
/**
 * @file msvmmaj_init.h
 * @author Gertjan van den Burg
 * @date January, 2014
 * @brief Header file for msvmmaj_init.c
 *
 * @details
 * Contains function declarations for the initialization functions for
 * MajModel and MajData structures.
 */

#ifndef MSVMMAJ_INIT_H
#define MSVMMAJ_INIT_H

// forward declaration
struct MajData;
struct MajModel;

struct MajModel *msvmmaj_init_model();

struct MajData *msvmmaj_init_data();

void msvmmaj_allocate_model(struct MajModel *model);
void msvmmaj_free_model(struct MajModel *model);
void msvmmaj_free_data(struct MajData *data);

#endif