icon-loader: rename to desktop-entry

Also rename `struct icon_loader` to `struct sfdo`.
This commit is contained in:
Jens Peters 2024-11-18 18:59:49 +01:00
parent e647fc7b23
commit f69576f8a6
No known key found for this signature in database
7 changed files with 60 additions and 59 deletions

12
include/desktop-entry.h Normal file
View file

@ -0,0 +1,12 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_DESKTOP_ENTRY_H
#define LABWC_DESKTOP_ENTRY_H
struct server;
void desktop_entry_init(struct server *server);
void desktop_entry_finish(struct server *server);
struct lab_data_buffer *desktop_entry_icon_lookup(struct server *server,
const char *app_id, int size, float scale);
#endif /* LABWC_DESKTOP_ENTRY_H */