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.
40 lines
842 B
40 lines
842 B
/******************************************************************************
|
|
*
|
|
* (C) COPYRIGHT MICROSOFT CORP., 2000
|
|
*
|
|
* TITLE: precomp.cpp
|
|
*
|
|
* VERSION: 1.0
|
|
*
|
|
* AUTHOR: KeisukeT
|
|
*
|
|
* DATE: 8 Sep, 2000
|
|
*
|
|
* DESCRIPTION:
|
|
* Precompiled header
|
|
*
|
|
*
|
|
*******************************************************************************/
|
|
|
|
#ifndef __PRECOMP_H_INCLUDED
|
|
#define __PRECOMP_H_INCLUDED
|
|
|
|
#include <windows.h>
|
|
#include <windowsx.h>
|
|
#include <shlobj.h>
|
|
#include <commctrl.h>
|
|
#include <assert.h>
|
|
#include <objbase.h>
|
|
#include <setupapi.h>
|
|
#include <shfusion.h>
|
|
#include <shlobj.h>
|
|
#include <stdio.h>
|
|
#include <tchar.h>
|
|
#include "sticimsg.h"
|
|
|
|
//
|
|
// Make sure this is included last, so it can redefine the necessary stuff
|
|
//
|
|
#include <shfusion.h>
|
|
|
|
#endif // __PRECOMP_H_INCLUDED
|