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.

37 lines
1.2 KiB

  1. //===========================================================================
  2. // CALIBRATE.H
  3. //===========================================================================
  4. //===========================================================================
  5. // (C) Copyright 1997 Microsoft Corp. All rights reserved.
  6. //
  7. // You have a royalty-free right to use, modify, reproduce and
  8. // distribute the Sample Files (and/or any modified version) in
  9. // any way you find useful, provided that you agree that
  10. // Microsoft has no warranty obligations or liability for any
  11. // Sample Application Files which are modified.
  12. //===========================================================================
  13. #ifndef _CALIBRATE_H
  14. #define _CALIBRATE_H
  15. /***************************************************************************
  16. //
  17. // FUNCTION DEFINITIONS FOLLOW
  18. //
  19. ***************************************************************************/
  20. BOOL CALLBACK Calibrate_DlgProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
  21. typedef struct sliderranges_tag
  22. {
  23. DWORD dwSlider0Max;
  24. DWORD dwSlider0Min;
  25. DWORD dwSlider0Centre;
  26. DWORD dwSlider1Max;
  27. DWORD dwSlider1Min;
  28. DWORD dwSlider1Centre;
  29. }SLIDERRANGES, FAR *LPSLIDERRANGES;
  30. #endif // *** _CALIBRATE_H