Source code of Windows XP (NT5)
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
434 B

  1. //+-------------------------------------------------------------------------
  2. //
  3. // Microsoft Windows
  4. //
  5. // Copyright (C) Microsoft Corporation, 1997 - 1997
  6. //
  7. // File: nyi.cpp
  8. //
  9. //--------------------------------------------------------------------------
  10. //
  11. // NYI.cpp: throw generic "not yet implemented" exception
  12. //
  13. #include "basics.h"
  14. void NYI()
  15. {
  16. THROW_ASSERT(EC_NYI,"Attempt to call unimplemented function");
  17. }