windows-nt/Source/XPSP1/NT/net/rras/ras/rassfm/rassfmhp.h

32 lines
704 B
C
Raw Permalink Normal View History

2020-09-26 03:20:57 -05:00
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 1998, Microsoft Corp. All rights reserved.
//
// FILE
//
// rassfmhp.h
//
// SYNOPSIS
//
// Declares the RasSfmHeap macro for acessing the DLL's private heap.
//
// MODIFICATION HISTORY
//
// 11/05/1998 Original version.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef _RASSFMHP_H_
#define _RASSFMHP_H_
#if _MSC_VER >= 1000
#pragma once
#endif
#define RasSfmHeap() (RasSfmPrivateHeap)
// Do not reference this variable directly since it may go away.
// Use the RasSfmHeap() macro instead.
extern PVOID RasSfmPrivateHeap;
#endif // _RASSFMHP_H_