26 lines
483 B
C++
26 lines
483 B
C++
|
//+-------------------------------------------------------------------------
|
||
|
//
|
||
|
// Microsoft Windows
|
||
|
//
|
||
|
// Copyright (C) Microsoft Corporation, 1999 - 1999
|
||
|
//
|
||
|
// File: moreutil.cpp
|
||
|
//
|
||
|
//--------------------------------------------------------------------------
|
||
|
|
||
|
/*
|
||
|
moreutil.cpp
|
||
|
|
||
|
Utility functions for the nodemgr without MFC
|
||
|
*/
|
||
|
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include "macros.h"
|
||
|
|
||
|
|
||
|
BOOL _IsValidAddress( const void* lp, UINT nBytes, BOOL bReadWrite )
|
||
|
{
|
||
|
return TRUE;
|
||
|
}
|