-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
834a04c
commit e83d8a5
Showing
1 changed file
with
3 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,8 @@ | ||
#pragma once | ||
#include <sal.h> | ||
#define WIN32_LEAN_AND_MEAN | ||
#include <windows.h> | ||
#include <stdbool.h> | ||
|
||
#ifndef _INC_WINDOWS | ||
#ifdef __cplusplus | ||
extern "C" | ||
#endif | ||
_Success_(return == true) | ||
bool reflink(_In_z_ const wchar_t oldpath[], _In_z_ const wchar_t newpath[]); | ||
#else | ||
EXTERN_C | ||
_Success_(return == true) | ||
bool reflink(_In_z_ PCWSTR oldpath, _In_z_ PCWSTR newpath); | ||
#endif | ||
bool reflink(_In_z_ PCWSTR oldpath, _In_z_ PCWSTR newpath); |