golang.zx2c4.com/wireguard/windows@v0.5.4-0.20230123132234-dcc0eb72a04b/installer/fetcher/systeminfo.h (about)

     1  /* SPDX-License-Identifier: GPL-2.0
     2   *
     3   * Copyright (C) 2020-2022 Jason A. Donenfeld. All Rights Reserved.
     4   */
     5  
     6  #ifndef _SYSTEMINFO_H
     7  #define _SYSTEMINFO_H
     8  
     9  #include <stdbool.h>
    10  
    11  const char *architecture(void);
    12  const char *useragent(void);
    13  bool is_win7(void);
    14  bool is_win8dotzero_or_below(void);
    15  
    16  #endif