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.
46 lines
487 B
46 lines
487 B
/*++
|
|
|
|
Copyright (c) 1994 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
accslib.h
|
|
|
|
Abstract:
|
|
|
|
Proto type definitions for access product lib functions.
|
|
|
|
Author:
|
|
|
|
Madan Appiah (madana) 11-Oct-1995
|
|
|
|
Environment:
|
|
|
|
User Mode - Win32
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _ACCSLIB_
|
|
#define _ACCSLIB_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
PVOID
|
|
MIDL_user_allocate(
|
|
size_t Size
|
|
);
|
|
|
|
VOID
|
|
MIDL_user_free(
|
|
PVOID MemoryPtr
|
|
);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _ACCSLIB_
|