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.

48 lines
1.3 KiB

  1. /*******************************************************************************
  2. *
  3. * (C) COPYRIGHT MICROSOFT CORP., 1993-1994
  4. *
  5. * TITLE: REGCDHK.H
  6. *
  7. * VERSION: 4.01
  8. *
  9. * AUTHOR: Tracy Sharpe
  10. *
  11. * DATE: 05 Mar 1994
  12. *
  13. * Common dialog box hook functions for the Registry Editor.
  14. *
  15. ********************************************************************************
  16. *
  17. * CHANGE LOG:
  18. *
  19. * DATE REV DESCRIPTION
  20. * ----------- --- -------------------------------------------------------------
  21. * 05 Mar 1994 TCS Original implementation.
  22. *
  23. *******************************************************************************/
  24. #ifndef _INC_REGCDHK
  25. #define _INC_REGCDHK
  26. // Buffer to store the starting path for a registry export or print operation.
  27. extern TCHAR g_SelectedPath[SIZE_SELECTED_PATH];
  28. // TRUE if registry operation should be applied to the entire registry or to
  29. // only start at g_SelectedPath.
  30. extern BOOL g_fRangeAll;
  31. // Contains the resource identifier for the dialog that is currently being
  32. // used. Assumes that there is only one instance of a hook dialog at a time.
  33. extern UINT g_RegCommDlgDialogTemplate;
  34. UINT_PTR
  35. CALLBACK
  36. RegCommDlgHookProc(
  37. HWND hWnd,
  38. UINT Message,
  39. WPARAM wParam,
  40. LPARAM lParam
  41. );
  42. #endif // _INC_REGCDHK