Commit 480054b6 authored by Alistair Leslie-Hughes's avatar Alistair Leslie-Hughes Committed by Alexandre Julliard

mspatcha/tests: Make functions static.

parent 1b7ed451
...@@ -319,7 +319,7 @@ static BOOL CALLBACK progress_cancel(void *context, ULONG current, ULONG max) ...@@ -319,7 +319,7 @@ static BOOL CALLBACK progress_cancel(void *context, ULONG current, ULONG max)
return FALSE; return FALSE;
} }
BOOL create_temp_file(const BYTE *buf, size_t size, const char *temppath, char *tempname) static BOOL create_temp_file(const BYTE *buf, size_t size, const char *temppath, char *tempname)
{ {
HANDLE hndl; HANDLE hndl;
DWORD written; DWORD written;
...@@ -334,14 +334,14 @@ BOOL create_temp_file(const BYTE *buf, size_t size, const char *temppath, char * ...@@ -334,14 +334,14 @@ BOOL create_temp_file(const BYTE *buf, size_t size, const char *temppath, char *
return b && written == size; return b && written == size;
} }
void delete_test_files(void) static void delete_test_files(void)
{ {
size_t i; size_t i;
for (i = 0; test_files[i].buf != NULL; ++i) for (i = 0; test_files[i].buf != NULL; ++i)
DeleteFileA(test_files[i].name); DeleteFileA(test_files[i].name);
} }
BOOL setup_test_files(void) static BOOL setup_test_files(void)
{ {
char temppath[MAX_PATH]; char temppath[MAX_PATH];
size_t i; size_t i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment