mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
937 B
62 lines
937 B
/*++
|
|
|
|
Copyright (c) 1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
spi386.h
|
|
|
|
Abstract:
|
|
|
|
x86-specific header file for text setup.
|
|
|
|
Author:
|
|
|
|
Ted Miller (tedm) 29-October-1993
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
|
|
#ifndef _SPi386_DEFN_
|
|
#define _SPi386_DEFN_
|
|
|
|
|
|
BOOLEAN
|
|
SpLocateWin31(
|
|
IN PVOID SifHandle,
|
|
OUT PDISK_REGION *InstallRegion,
|
|
OUT PWSTR *InstallPath,
|
|
OUT PDISK_REGION *SystemPartitionRegion,
|
|
OUT PBOOLEAN Windows95
|
|
);
|
|
|
|
BOOLEAN
|
|
SpConfirmWin31Path(
|
|
IN BOOLEAN Windows95
|
|
);
|
|
|
|
BOOLEAN
|
|
SpIsWin31Dir(
|
|
IN PDISK_REGION Region,
|
|
IN PWSTR PathComponent,
|
|
IN ULONG MinKB
|
|
);
|
|
|
|
BOOLEAN
|
|
SpIsWin4Dir(
|
|
IN PDISK_REGION Region,
|
|
IN PWSTR PathComponent
|
|
);
|
|
|
|
VOID
|
|
SpMashemSmashem(
|
|
IN HANDLE FileHandle, OPTIONAL
|
|
IN PWSTR Name1, OPTIONAL
|
|
IN PWSTR Name2, OPTIONAL
|
|
IN PWSTR Name3 OPTIONAL
|
|
);
|
|
|
|
#endif // ndef _SPi386_DEFN_
|