1/*
2 * Copyright 2009 Vincent Duvert, vincent.duvert@free.fr
3 * Copyright 2014 Haiku, Inc. All rights reserved.
4 *
5 * Distributed under the terms of the MIT License.
6 *
7 * Authors:
8 *		Vincent Duvert, vincent.duvert@free.fr
9 *		John Scipione, jscipione@gmail.com
10 */
11#ifndef VECTOR_ICON_H
12#define VECTOR_ICON_H
13
14
15struct vector_icon {
16	uint8* data;
17	size_t size;
18};
19
20
21#endif // VECTOR_ICON_H
22