mirror of
https://git.zx2c4.com/wireguard-windows
synced 2024-11-10 16:59:18 +00:00
6ed37f30f5
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
18 lines
398 B
C
18 lines
398 B
C
/* SPDX-License-Identifier: GPL-2.0
|
|
*
|
|
* Copyright (C) 2020-2022 Jason A. Donenfeld. All Rights Reserved.
|
|
*/
|
|
|
|
#ifndef _FILELIST_H
|
|
#define _FILELIST_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
enum { MAX_FILENAME_LEN = 0x400 };
|
|
|
|
bool extract_newest_file(char filename[static MAX_FILENAME_LEN], uint8_t hash[static 32], const char *list, size_t len, const char *arch);
|
|
|
|
#endif
|