mirror of
https://github.com/ValdikSS/GoodbyeDPI.git
synced 2024-11-22 01:55:19 +01:00
23babdc8fa
Program can now be started as a Windows Service. No additional arguments needed. Refer to `service_install` and `service_remove` scripts in released zip file.
11 lines
180 B
C
11 lines
180 B
C
#define HOST_MAXLEN 253
|
|
|
|
#ifndef DEBUG
|
|
#define debug(...) do {} while (0)
|
|
#else
|
|
#define debug(...) printf(__VA_ARGS__)
|
|
#endif
|
|
|
|
int main(int argc, char *argv[]);
|
|
void deinit_all();
|