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.
21 lines
455 B
21 lines
455 B
//+-------------------------------------------------------------------------
|
|
//
|
|
// 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");
|
|
}
|
|
|