32 lines
454 B
C++
32 lines
454 B
C++
|
/*++
|
||
|
|
||
|
Copyright (C) Microsoft Corporation, 1995 - 1999
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
precomp.hxx
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
Precompiled header for the RPC runtime. Pulls in all the
|
||
|
system headers plus local header appearing in >15 files.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Mario Goertzel (mariogo) 30-Sept-1995
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
--*/
|
||
|
|
||
|
#ifndef __PRECOMP_HXX
|
||
|
#define __PRECOMP_HXX
|
||
|
|
||
|
#include <sysinc.h>
|
||
|
#include <rpc.h>
|
||
|
#include <rpcndr.h>
|
||
|
#include <rpcdcep.h>
|
||
|
#include <CellDef.hxx>
|
||
|
|
||
|
#endif
|