1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-09-19 10:10:40 +03:00
SoftEtherVPN/src/vpndrvinst/Dialog.h
Davide Beatrici 9d29d8813b New vpndrvinst implementation, independent from Cedar and Mayaqua
This greatly improves performance and reduces the binary's size (~0.2 MB vs ~5 MB).

All recent Windows versions are supported, starting with Vista.

No dialogs are created, aside from error/warning ones in case of failure.

The only dependency (aside from Windows libraries) is libhamcore.
2021-03-12 05:46:20 +01:00

10 lines
202 B
C

#ifndef DIALOG_H
#define DIALOG_H
#define MAX_MESSAGE_SIZE 1024
int ShowInformation(const char *title, const char *message, ...);
int ShowWarning(const char *title, const char *message, ...);
#endif