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.
33 lines
710 B
33 lines
710 B
//-----------------------------------------------------------------------------
|
|
// mrebag.cpp
|
|
//
|
|
// Copyright (C) 1994, Microsoft Corporation
|
|
//
|
|
// Purpose:
|
|
// implement the MREBag interface
|
|
//
|
|
// Revision History:
|
|
//
|
|
// [] 10-Nov-1994 Dans Created
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
#include "pdbimpl.h"
|
|
#include "mrimpl.h"
|
|
|
|
BOOL
|
|
MREB::FAddDep ( NI niDep, TI tiDep, SZC szMemberName, DEPON deponHow, DWORD dwLine ) {
|
|
precondition ( m_pmref );
|
|
precondition ( niDep != niNil );
|
|
|
|
MRE * pmre = Pmre();
|
|
|
|
assert ( pmre );
|
|
|
|
return pmre->FAddClassDep ( niDep, tiDep, dwLine, szMemberName, deponHow );
|
|
}
|
|
|
|
BOOL
|
|
MREB::FClose() {
|
|
delete this;
|
|
return fTrue;
|
|
}
|