29 lines
368 B
C
29 lines
368 B
C
/*++
|
|
|
|
Copyright (c) Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
stdafx.hxx
|
|
|
|
Abstract:
|
|
|
|
Include file for standard system include files.
|
|
|
|
--*/
|
|
|
|
#ifndef __VSS_STDAFX_HXX__
|
|
#define __VSS_STDAFX_HXX__
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif
|
|
|
|
#include <windows.h>
|
|
|
|
#include "vss.h"
|
|
#include <vswriter.h>
|
|
#include <stddef.h>
|
|
#include <wchar.h>
|
|
#endif // __VSS_STDAFX_HXX__
|