mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-04-03 18:00:08 +03:00
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.
10 lines
202 B
C
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
|