[async] add "theme loaded" msg

This commit is contained in:
Milo Turner 2020-02-20 12:05:34 -05:00
parent 4d0d2507ca
commit 4b069080f9
1 changed files with 8 additions and 0 deletions

View File

@ -1,14 +1,22 @@
#pragma once #pragma once
struct msgq;
enum { enum {
ax_msg_shutdown_TAG, ax_msg_shutdown_TAG,
ax_msg_load_font_TAG, ax_msg_load_font_TAG,
ax_msg_theme_loaded_TAG,
}; };
struct ax_msg_shutdown { struct ax_msg_shutdown {
}; };
struct ax_msg_load_font { struct ax_msg_load_font {
struct msgq* callback_mq;
struct ax_theme* theme; struct ax_theme* theme;
int category; int category;
}; };
struct ax_msg_theme_loaded {
struct ax_theme* theme;
};