windows-nt/Source/XPSP1/NT/enduser/troubleshoot/bn/nyi.cpp

22 lines
434 B
C++
Raw Normal View History

2020-09-26 03:20:57 -05:00
//+-------------------------------------------------------------------------
//
// Microsoft Windows
//
// Copyright (C) Microsoft Corporation, 1997 - 1997
//
// File: nyi.cpp
//
//--------------------------------------------------------------------------
//
// NYI.cpp: throw generic "not yet implemented" exception
//
#include "basics.h"
void NYI()
{
THROW_ASSERT(EC_NYI,"Attempt to call unimplemented function");
}