mirror of
https://github.com/bol-van/zapret.git
synced 2025-06-29 18:21:16 +00:00
13 lines
165 B
C
13 lines
165 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __linux__
|
|
#define HAS_FILTER_SSID 1
|
|
#endif
|
|
|
|
#ifdef __CYGWIN__
|
|
extern bool bQuit;
|
|
#endif
|
|
int main(int argc, char *argv[]);
|