mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
10 lines
232 B
C
10 lines
232 B
C
/* 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;
|
|
}
|