NativeReactLikeInMacintosh/dialog.h

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