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

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