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.

28 lines
584 B

  1. #ifndef _LAUNSTUB_H_
  2. #define _LAUNSTUB_H_
  3. #include "ulsapi.h"
  4. ////////////////////////////////////////////////////////
  5. //
  6. // CULSLaunch_Stub
  7. //
  8. class CULSLaunch_Stub
  9. {
  10. public:
  11. STDMETHOD (ParseUlsHttpRespFile) ( PTSTR, ULS_HTTP_RESP * );
  12. STDMETHOD (ParseUlsHttpRespBuffer) ( PTSTR, ULONG, ULS_HTTP_RESP * );
  13. STDMETHOD (FreeUlsHttpResp) ( ULS_HTTP_RESP * );
  14. private:
  15. HRESULT ParseB3HttpRespBuffer ( PTSTR, ULONG, ULS_HTTP_RESP * );
  16. HRESULT ParseB4HttpRespBuffer ( PTSTR, ULONG, ULS_HTTP_RESP * );
  17. };
  18. #endif // _LAUNSTUB_H_