ui/motif/image.c

Tue, 16 Jan 2024 12:49:46 +0100

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Tue, 16 Jan 2024 12:49:46 +0100
branch
newapi
changeset 226
4eef1d49f794
parent 169
fe49cff3c571
child 406
0ebf9d7b23e8
permissions
-rw-r--r--

split toolbar in left,center,right segments (WinUI3)

/*
 * 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) {
    return NULL;
}

UiIcon* ui_icon_unscaled(const char *name, int size) {
    return NULL;
}

void ui_free_icon(UiIcon *icon) {
    
}

UiImage* ui_icon_image(UiIcon *icon) {
    return NULL;
}

UiImage* ui_image(const char *filename) {
    return NULL;
}

UiImage* ui_named_image(const char *filename, const char *name) {
    return NULL;
}

UiImage* ui_load_image_from_path(const char *path, const char *name) {
    return NULL;
}

void ui_free_image(UiImage *img) {
    
}

mercurial