mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 07:08:48 +00:00
Add CopyFileW
This commit is contained in:
@@ -159,6 +159,11 @@ foreign kernel32 {
|
|||||||
WaitForSingleObject :: proc(hHandle: HANDLE, dwMilliseconds: DWORD) -> DWORD ---
|
WaitForSingleObject :: proc(hHandle: HANDLE, dwMilliseconds: DWORD) -> DWORD ---
|
||||||
Sleep :: proc(dwMilliseconds: DWORD) ---
|
Sleep :: proc(dwMilliseconds: DWORD) ---
|
||||||
GetProcessId :: proc(handle: HANDLE) -> DWORD ---
|
GetProcessId :: proc(handle: HANDLE) -> DWORD ---
|
||||||
|
CopyFileW :: proc(
|
||||||
|
lpExistingFileName: LPCWSTR,
|
||||||
|
lpNewFileName: LPCWSTR,
|
||||||
|
bFailIfExists: BOOL,
|
||||||
|
) -> BOOL ---
|
||||||
CopyFileExW :: proc(
|
CopyFileExW :: proc(
|
||||||
lpExistingFileName: LPCWSTR,
|
lpExistingFileName: LPCWSTR,
|
||||||
lpNewFileName: LPCWSTR,
|
lpNewFileName: LPCWSTR,
|
||||||
|
|||||||
Reference in New Issue
Block a user