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.

46 lines
700 B

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. #ifndef _LRWIZDLL_H_
  3. #define _LRWIZDLL_H_
  4. #include "def.h"
  5. #include "lrwizapi.h"
  6. struct PageInfo
  7. {
  8. int LRMode;
  9. int LROperation;
  10. DWORD dwPrevPage;
  11. UINT CurrentPage;
  12. UINT TotalPages;
  13. HFONT hBigBoldFont;
  14. HFONT hBoldFont;
  15. };
  16. BOOL WINAPI
  17. DllMain(
  18. HANDLE hInstance,
  19. ULONG ul_reason_for_call,
  20. LPVOID lpReserved);
  21. DWORD
  22. StartWizard(
  23. HWND hWndParent,
  24. WIZACTION WizAction,
  25. LPTSTR pszLSName,
  26. PBOOL pbRefresh
  27. );
  28. #ifdef XX
  29. DWORD
  30. StartLRWiz(
  31. HWND hWndParent,
  32. LPTSTR wszLSName);
  33. #endif
  34. BOOL
  35. LRIsLSRunning();
  36. DWORD ShowProperties(HWND hWndParent);
  37. #endif