--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ui/motif/image.c Wed Dec 09 11:32:01 2020 +0100 @@ -0,0 +1,40 @@ +/* + * To change this license header, choose License Headers in Project Properties. + * To change this template file, choose Tools | Templates + * and open the template in the editor. + */ + +#include "image.h" + +UiIcon* ui_icon(const char *name, int size) { + +} + +UiIcon* ui_icon_unscaled(const char *name, int size) { + +} + +void ui_free_icon(UiIcon *icon) { + +} + +UiImage* ui_icon_image(UiIcon *icon) { + +} + +UiImage* ui_image(const char *filename) { + +} + +UiImage* ui_named_image(const char *filename, const char *name) { + +} + +UiImage* ui_load_image_from_path(const char *path, const char *name) { + +} + +void ui_free_image(UiImage *img) { + +} +