Source code of Windows XP (NT5)
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.

30 lines
556 B

  1. /*++
  2. Copyright (c) 2000 Microsoft Corporation
  3. Module Name:
  4. Terminal Server ISAPI Proxy
  5. Abstract:
  6. This is the ISAPI side of the terminal server proxy. This opens a connection to the
  7. proxied server and then forwards data back and forth through IIS. There is also
  8. a filter component which takes care of having more user friendly urls.
  9. Author:
  10. Marc Reyhner 8/22/2000
  11. --*/
  12. #ifndef __STDAFX_H__
  13. #define __STDAFX_H__
  14. #include <Winsock2.h>
  15. #include <windows.h>
  16. #include <httpext.h>
  17. #include <httpfilt.h>
  18. #include <tchar.h>
  19. #endif