mirror of
https://github.com/kentaromiura/NativeReactLikeInMacintosh.git
synced 2025-03-06 19:29:32 +00:00
8 lines
163 B
C
8 lines
163 B
C
#ifndef DIALOG_H
|
|
#define DIALOG_H
|
|
#include <stdbool.h>
|
|
|
|
bool ShowAlert(char *message);
|
|
bool ShowDialog(char *message, char *title, char *ok, char *cancel);
|
|
|
|
#endif |