mirror of https://github.com/tongzx/nt5src
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.
39 lines
735 B
39 lines
735 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1999
|
|
//
|
|
// File: catutil.h
|
|
//
|
|
// Contents: definitions for catalog file utility functions
|
|
//
|
|
// History: 01-may-2000 reidk created
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
|
|
#ifndef __CATUTIL_H
|
|
#define __CATUTIL_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
|
|
BOOL
|
|
CatUtil_CreateCTLContextFromFileName(
|
|
LPCWSTR pwszFileName,
|
|
HANDLE *phMappedFile,
|
|
BYTE **ppbMappedFile,
|
|
PCCTL_CONTEXT *ppCTLContext,
|
|
BOOL fCreateSorted);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif // __CATUTIL_H
|