mirror of https://github.com/ossrs/srs.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
232 B
C
11 lines
232 B
C
1 year ago
|
/* Copyright © 2023 Steve Lhomme */
|
||
|
/* SPDX-License-Identifier: ISC */
|
||
|
#include <windows.h>
|
||
|
#if !defined(_WIN32_WINNT) || _WIN32_WINNT < 0x0600 /* _WIN32_WINNT_VISTA */
|
||
|
#error NOPE
|
||
|
#endif
|
||
|
int main(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|