Skip to content

Commit 2a8ce01

Browse files
committed
Fix private decl
1 parent 3ada23c commit 2a8ce01

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.Uwp/Helpers/NativeFileOperationsHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ private struct FILE_STREAM_INFO
314314
}
315315

316316
[DllImport("api-ms-win-core-file-l2-1-1.dll", CharSet = CharSet.Auto, CallingConvention = CallingConvention.StdCall, SetLastError = true)]
317-
public static extern bool GetFileInformationByHandleEx(IntPtr hFile, FILE_INFO_BY_HANDLE_CLASS infoClass, IntPtr dirInfo, uint dwBufferSize);
317+
private static extern bool GetFileInformationByHandleEx(IntPtr hFile, FILE_INFO_BY_HANDLE_CLASS infoClass, IntPtr dirInfo, uint dwBufferSize);
318318

319319
public static bool GetFileDateModified(string filePath, out FILETIME dateModified)
320320
{

0 commit comments

Comments
 (0)