Leaked source code of windows server 2003
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.
|
|
/*++
Copyright (c) 2000 Microsoft Corporation
Module Name:
spbasefile.h
Abstract:
see also .\spcab.c .\spbasefile.c .\spbasefile.h windows\winstate\...\cablib.c windows\winstate\cobra\utils\main\basefile.c windows\winstate\cobra\utils\inc\basefile.h
Author:
Jay Krell (a-JayK) November 2000
Revision History:
--*/ #pragma once
#include "windows.h"
BOOL SpCreateDirectoryA( IN PCSTR FullPath );
BOOL SpCreateDirectoryW( IN PCWSTR FullPath );
HANDLE SpCreateFile1A( IN PCSTR FileName );
HANDLE SpOpenFile1A( IN PCSTR FileName );
HANDLE SpOpenFile1W( IN PCWSTR FileName );
|