2025-04-27 07:49:33 -04:00

47 lines
534 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*++
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_