summaryrefslogtreecommitdiff
path: root/src/bin/eolian/types_generator.h
blob: 6738b022c212625e3ff6edfcb0500524f8ae4f60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef TYPES_GENERATOR_H
#define TYPES_GENERATOR_H

#include<Eina.h>

/*
 * @brief Generate the header code for the types of a specific file.
 *
 * @param[in] eo_filename Eo filename
 * @param[inout] buf buffer to fill
 *
 * @return EINA_TRUE on success, EINA_FALSE on error.
 *
 */
Eina_Bool types_header_generate(const char *eo_filename, Eina_Strbuf *buf);

#endif