Source code of Windows XP (NT5)
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.

26 lines
764 B

  1. /*************************************************
  2. * wizard.h *
  3. * *
  4. * Copyright (C) 1995-1999 Microsoft Inc. *
  5. * *
  6. *************************************************/
  7. // constants
  8. #define NUM_PAGES 3
  9. #define MAX_BUF 5000
  10. #define MAX_LINE 512
  11. // Function prototypes
  12. // Pages for Wizard
  13. INT_PTR APIENTRY ImeName(HWND, UINT, WPARAM, LPARAM);
  14. INT_PTR APIENTRY ImeTable(HWND, UINT, WPARAM, LPARAM);
  15. INT_PTR APIENTRY ImeParam(HWND, UINT, WPARAM, LPARAM);
  16. //functions
  17. int CreateWizard(HWND, HINSTANCE);
  18. void FillInPropertyPage( PROPSHEETPAGE* , int, LPTSTR, DLGPROC);
  19. void GenerateReview(HWND);