NativeReactLikeInMacintosh/dialog.h

8 lines
163 B
C
Raw Normal View History

2020-05-03 14:12:49 +00:00
#ifndef DIALOG_H
#define DIALOG_H
#include <stdbool.h>
bool ShowAlert(char *message);
bool ShowDialog(char *message, char *title, char *ok, char *cancel);
#endif