WindowsXP-SP1/enduser/troubleshoot/bn/nyi.cpp
2020-09-30 16:53:49 +02:00

22 lines
455 B
C++

//+-------------------------------------------------------------------------
//
// 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");
}