Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Merge pull request #696 from MartinNowak/windowsAPI
Browse files Browse the repository at this point in the history
add SetFileAttributes
  • Loading branch information
yebblies committed Dec 21, 2013
2 parents 4c57269 + 575793f commit dad2045
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/core/sys/windows/windows.d
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,8 @@ BOOL MoveFileA(in char *from, in char *to);
BOOL MoveFileW(LPCWSTR lpExistingFileName, LPCWSTR lpNewFileName);
BOOL ReadFile(HANDLE hFile, void *lpBuffer, DWORD nNumberOfBytesToRead,
DWORD *lpNumberOfBytesRead, OVERLAPPED *lpOverlapped);
BOOL SetFileAttributesA(in LPCSTR lpFileName, DWORD dwFileAttributes);
BOOL SetFileAttributesW(in LPCWSTR lpFileName, DWORD dwFileAttributes);
DWORD SetFilePointer(HANDLE hFile, LONG lDistanceToMove,
LONG *lpDistanceToMoveHigh, DWORD dwMoveMethod);
BOOL WriteFile(HANDLE hFile, in void *lpBuffer, DWORD nNumberOfBytesToWrite,
Expand Down

0 comments on commit dad2045

Please sign in to comment.