Lines Matching defs:junction
553 HANDLE junction = NULL;
567 junction point. */
592 junction points. Here's what I've learned along the way:
593 - A junction point has two components: a print name and a substitute
641 /* Create a directory for the junction point. */
645 junction = CreateFileW(dst_path, GENERIC_READ | GENERIC_WRITE, 0, NULL,
648 if (junction == INVALID_HANDLE_VALUE)
651 /* Make the directory entry a junction point. */
652 if (!DeviceIoControl(junction, FSCTL_SET_REPARSE_POINT, rdb, rdb_size,
660 CloseHandle(junction);