mirror of
https://github.com/aaru-dps/fstester.git
synced 2025-12-16 19:24:39 +00:00
12 lines
285 B
C
12 lines
285 B
C
|
|
//
|
||
|
|
// Created by claunia on 11/3/21.
|
||
|
|
//
|
||
|
|
|
||
|
|
#ifndef SETTER_SRC_WIN32_LINKS_H_
|
||
|
|
#define SETTER_SRC_WIN32_LINKS_H_
|
||
|
|
|
||
|
|
BOOL(WINAPI* WinNtCreateHardLinkA)(LPCSTR, LPCSTR, LPSECURITY_ATTRIBUTES);
|
||
|
|
BOOL(WINAPI* WinNtCreateSymbolicLinkA)(LPCSTR, LPCSTR, DWORD);
|
||
|
|
|
||
|
|
#endif // SETTER_SRC_WIN32_LINKS_H_
|