Windows2003-3790/enduser/troubleshoot/bn/nyi.cpp

22 lines
455 B
C++
Raw Normal View History

2001-01-01 00:00:00 +01: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");
}