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.

42 lines
950 B

  1. /*++
  2. Copyright (c) 1995 Microsoft Corporation
  3. All rights reserved.
  4. Module Name:
  5. web.h
  6. Abstract:
  7. Code download API definitions.
  8. Author:
  9. Muhunthan Sivapragasam (MuhuntS) 20-Oct-1995
  10. Revision History:
  11. --*/
  12. #ifndef _WEB_H
  13. #define _WEB_H
  14. // Include the CDM defines & declares
  15. typedef struct _CODEDOWNLOADINFO {
  16. HMODULE hModule;
  17. HANDLE hConnection;
  18. cdecl HANDLE (*pfnOpen)(HWND hwnd);
  19. cdecl BOOL (*pfnDownload)(HANDLE hConnection,
  20. HWND hwnd,
  21. PDOWNLOADINFO pDownloadInfo,
  22. LPTSTR pszDownloadPath,
  23. UINT uSize,
  24. PUINT puNeeded);
  25. cdecl VOID (*pfnClose)(HANDLE hConnection);
  26. } CODEDOWNLOADINFO, *PCODEDOWNLOADINFO;
  27. #endif // #ifndef _WEB_H