1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
|
/*
* WINAPI fallback functions
*
* Copyright (C) 2008-2024, Joachim Metz <joachim.metz@gmail.com>
*
* Refer to AUTHORS for acknowledgements.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#if !defined( _LIBCFILE_WINAPI_H )
#define _LIBCFILE_WINAPI_H
#include <common.h>
#include <types.h>
#if defined( __cplusplus )
extern "C" {
#endif
#if defined( WINAPI ) && ( WINVER <= 0x0500 )
BOOL libcfile_CloseHandle(
HANDLE file_handle );
HANDLE libcfile_CreateFileA(
LPCSTR filename,
DWORD desired_access,
DWORD share_mode,
SECURITY_ATTRIBUTES *security_attributes,
DWORD creation_disposition,
DWORD flags_and_attributes,
HANDLE template_file );
#if defined( HAVE_WIDE_CHARACTER_TYPE )
HANDLE libcfile_CreateFileW(
LPCWSTR filename,
DWORD desired_access,
DWORD share_mode,
SECURITY_ATTRIBUTES *security_attributes,
DWORD creation_disposition,
DWORD flags_and_attributes,
HANDLE template_file );
#endif /* defined( HAVE_WIDE_CHARACTER_TYPE ) */
BOOL libcfile_GetOverlappedResult(
HANDLE file_handle,
OVERLAPPED *overlapped,
DWORD *read_count,
BOOL wait_io_complete );
BOOL libcfile_ReadFile(
HANDLE file_handle,
VOID *buffer,
DWORD read_size,
DWORD *read_count,
OVERLAPPED *overlapped );
BOOL libcfile_WriteFile(
HANDLE file_handle,
VOID *buffer,
DWORD write_size,
DWORD *write_count,
OVERLAPPED *overlapped );
BOOL libcfile_SetFilePointerEx(
HANDLE file_handle,
LARGE_INTEGER distance_to_move_large_integer,
LARGE_INTEGER *new_file_pointer_large_integer,
DWORD move_method );
BOOL libcfile_SetEndOfFile(
HANDLE file_handle );
BOOL libcfile_GetFileSizeEx(
HANDLE file_handle,
LARGE_INTEGER *file_size_large_integer );
DWORD libcfile_GetFileType(
HANDLE file_handle );
DWORD libcfile_GetFileAttributesA(
LPCSTR filename );
#if defined( HAVE_WIDE_CHARACTER_TYPE )
DWORD libcfile_GetFileAttributesW(
LPCWSTR filename );
#endif /* defined( HAVE_WIDE_CHARACTER_TYPE ) */
BOOL libcfile_DeleteFileA(
LPCSTR filename );
#if defined( HAVE_WIDE_CHARACTER_TYPE )
BOOL libcfile_DeleteFileW(
LPCWSTR filename );
#endif /* defined( HAVE_WIDE_CHARACTER_TYPE ) */
#endif /* defined( WINAPI ) && ( WINVER <= 0x0500 ) */
#if defined( __cplusplus )
}
#endif
#endif /* !defined( _LIBCFILE_WINAPI_H ) */
|