mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Merge pull request #2643 from ryuukk/patch-5
core:sys/windows: Add CopyFileW proc
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