Leaked source code of windows server 2003
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.

64 lines
830 B

  1. /*++
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name:
  4. options_handler.h
  5. Abstract:
  6. Handler class for OPTIONS requests
  7. Author:
  8. Anil Ruia (AnilR) 4-Apr-2001
  9. Revision History:
  10. --*/
  11. #ifndef _OPTIONS_HANDLER_H_
  12. #define _OPTIONS_HANDLER_H_
  13. class W3_OPTIONS_HANDLER : public W3_HANDLER
  14. {
  15. public:
  16. W3_OPTIONS_HANDLER( W3_CONTEXT * pW3Context )
  17. : W3_HANDLER( pW3Context )
  18. {
  19. }
  20. WCHAR *
  21. QueryName(
  22. VOID
  23. )
  24. {
  25. return L"OptionsHandler";
  26. }
  27. CONTEXT_STATUS
  28. DoWork(
  29. VOID
  30. );
  31. static
  32. HRESULT
  33. Initialize(
  34. VOID
  35. )
  36. {
  37. return NO_ERROR;
  38. }
  39. static
  40. VOID
  41. Terminate(
  42. VOID
  43. )
  44. {
  45. }
  46. };
  47. #endif // _OPTIONS_HANDLER_H_