add existing code (build system, libs, initial mizucp code)
[mizunara.git] / ui / motif / image.c
1 /*
2  * To change this license header, choose License Headers in Project Properties.
3  * To change this template file, choose Tools | Templates
4  * and open the template in the editor.
5  */
6
7 #include "image.h"
8
9 UiIcon* ui_icon(const char *name, int size) {
10     return NULL;
11 }
12
13 UiIcon* ui_icon_unscaled(const char *name, int size) {
14     return NULL;
15 }
16
17 void ui_free_icon(UiIcon *icon) {
18     
19 }
20
21 UiImage* ui_icon_image(UiIcon *icon) {
22     return NULL;
23 }
24
25 UiImage* ui_image(const char *filename) {
26     return NULL;
27 }
28
29 UiImage* ui_named_image(const char *filename, const char *name) {
30     return NULL;
31 }
32
33 UiImage* ui_load_image_from_path(const char *path, const char *name) {
34     return NULL;
35 }
36
37 void ui_free_image(UiImage *img) {
38     
39 }
40