precomp.h
Upload User: caisha3
Upload Date: 2013-09-21
Package Size: 208739k
Code Size: 2k
Category:

Windows Develop

Development Platform:

Visual C++

  1. /*++
  2.      Copyright c 1996 Intel Corporation
  3.      All Rights Reserved
  4.      
  5.      Permission is granted to use, copy and distribute this software and 
  6.      its documentation for any purpose and without fee, provided, that 
  7.      the above copyright notice and this statement appear in all copies. 
  8.      Intel makes no representations about the suitability of this 
  9.      software for any purpose.  This software is provided "AS IS."  
  10.      
  11.      Intel specifically disclaims all warranties, express or implied, 
  12.      and all liability, including consequential and other indirect 
  13.      damages, for the use of this software, including liability for 
  14.      infringement of any proprietary rights, and including the 
  15.      warranties of merchantability and fitness for a particular purpose. 
  16.      Intel does not assume any responsibility for any errors which may 
  17.      appear in this software nor any responsibility to update it.
  18. Module Name:
  19.     precomp.h
  20. Abstract:
  21.     This file includes all the headers required to build msrlsp.dll
  22.     to ease the process of building a precompiled header.
  23. Author:
  24.     bugs@brandy.jf.intel.com
  25. Revision History:
  26. --*/
  27. #ifndef _PRECOMP_
  28. #define _PRECOMP_
  29. #ifndef WIN32_LEAN_AND_MEAN
  30. #define WIN32_LEAN_AND_MEAN
  31. #endif
  32. //
  33. // Turn off "declspec" decoration of entrypoints defined in WINSOCK2.H.
  34. //
  35. #define WINSOCK_API_LINKAGE
  36. #include <nt.h>
  37. #include <ntrtl.h>
  38. #include <nturtl.h>
  39. // #include <windows.h>
  40. #include <ws2spi.h>
  41. #include <wtypes.h> 
  42. #include <assert.h>
  43. // #include <winnt.h>
  44. #include "trace.h"
  45. #include "llist.h"
  46. #include "ws2_if.h"
  47. #include "rprovide.h"
  48. #include "rsocket.h"
  49. #include "dcatalog.h"
  50. #include "dcatitem.h"
  51. #include "rworker.h"
  52. #include "doverlap.h"
  53. #include "dbuffmgr.h"
  54. #include "dt_dll.h"
  55. #include "dthook.h"
  56. #include "cmap.h"
  57. #endif  // _PRECOMP_