31 lines
388 B
C
31 lines
388 B
C
|
/*++
|
||
|
|
||
|
Copyright (c) 2000 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
StdAfx
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
Precompiled headers module.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Marc Reyhner 7/5/2000
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef __STDAFX_H__
|
||
|
#define __STDAFX_H__
|
||
|
|
||
|
#include <windows.h>
|
||
|
#include <tchar.h>
|
||
|
#include <CommCtrl.h>
|
||
|
#include <RichEdit.h>
|
||
|
#include <RichOle.h>
|
||
|
|
||
|
// We include this to get things like ID_EDIT_COPY
|
||
|
#include <AfxRes.h>
|
||
|
|
||
|
#endif
|