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.

26 lines
556 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. stdafx_stub.cxx
  5. Abstract:
  6. Stub file that does nothing but turn off some compiler warnings then
  7. includes the machine-generated stdafx.c
  8. Author:
  9. Cliff Van Dyke (cliffv) 23-May-2001
  10. --*/
  11. #include "pch.hxx"
  12. #pragma warning ( disable : 4100 ) // : unreferenced formal parameter
  13. #pragma warning ( disable : 4189 ) // : local variable is initialized but not referenced
  14. #pragma warning ( disable : 4505 ) // : unreferenced local function has been removed
  15. #include "stdafx.cxx"