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.

19 lines
597 B

  1. //
  2. // Microsoft Corporation - Copyright 1997
  3. //
  4. //
  5. // readdata.H - Reading data helping utilities
  6. //
  7. #ifndef _READDATA_H_
  8. #define _READDATA_H_
  9. // Methods
  10. BOOL ReadData( LPECB lpEcb, LPVOID lpMoreData, DWORD dwSize );
  11. BOOL CompleteDownload( LPECB lpEcb, LPBYTE *lpbData );
  12. BOOL GetServerVarString( LPECB lpEcb, LPSTR lpVarName, LPSTR *lppszBuffer, LPDWORD lpdwSize );
  13. BOOL CheckForMultiPartFormSubmit( LPECB lpEcb, BOOL *lpfMultipart );
  14. BOOL CheckForDebug( LPECB lpEcb, BOOL *lpfDebug );
  15. BOOL CheckForTextPlainSubmit( LPECB lpEcb, BOOL *lpfTextPlain );
  16. #endif // _READDATA_H_