tizen 2.3.1 release
[external/buxton.git] / src / shared / buxtonstring.h
1 /*
2  * This file is part of buxton.
3  *
4  * Copyright (C) 2013 Intel Corporation
5  *
6  * buxton is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation; either version 2.1
9  * of the License, or (at your option) any later version.
10  */
11
12 #pragma once
13
14 #ifdef HAVE_CONFIG_H
15         #include "config.h"
16 #endif
17
18 /**
19  * Stores a string entity in Buxton
20  */
21 typedef struct BuxtonString {
22         char *value; /**<The content of the string */
23         uint32_t length; /**<The length of the string */
24 } BuxtonString;
25
26 /*
27  * Editor modelines  -  http://www.wireshark.org/tools/modelines.html
28  *
29  * Local variables:
30  * c-basic-offset: 8
31  * tab-width: 8
32  * indent-tabs-mode: t
33  * End:
34  *
35  * vi: set shiftwidth=8 tabstop=8 noexpandtab:
36  * :indentSize=8:tabSize=8:noTabs=false:
37  */