49 lines
672 B
C++
49 lines
672 B
C++
|
/*++
|
||
|
|
||
|
Microsoft Windows
|
||
|
Copyright (C) Microsoft Corporation, 1981 - 1999
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
precomp.hxx
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
Precompiled header file
|
||
|
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Rahul Thombre (RahulTh) 6/5/1998
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
6/5/1998 RahulTh
|
||
|
|
||
|
Created this module.
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef __PRECOMP_HXX__
|
||
|
#define __PRECOMP_HXX__
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include <help.h>
|
||
|
#include <prsht.h>
|
||
|
#include <setupapi.h>
|
||
|
#include <tchar.h>
|
||
|
#include <shellapi.h>
|
||
|
#include <shlobj.h>
|
||
|
#include <shlobjp.h>
|
||
|
#include <shlwapi.h>
|
||
|
#include <dbt.h>
|
||
|
#include <commctrl.h>
|
||
|
#include <shfusion.h>
|
||
|
#include <assert.h>
|
||
|
#include <regstr.h>
|
||
|
#include "resource.h"
|
||
|
#include "helparr.h"
|
||
|
|
||
|
|
||
|
#endif //__PRECOMP_HXX__
|