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.

52 lines
1.3 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright (c) 1996 Microsoft Corporation
  4. //
  5. // Module Name:
  6. // DDxDDv.h
  7. //
  8. // Abstract:
  9. // Definition of custom dialog data exchange/dialog data validation
  10. // routines.
  11. //
  12. // Implementation File:
  13. // DDxDDv.cpp
  14. //
  15. // Author:
  16. // David Potter (davidp) September 5, 1996
  17. //
  18. // Revision History:
  19. //
  20. // Notes:
  21. //
  22. /////////////////////////////////////////////////////////////////////////////
  23. #ifndef _DDXDDV_H_
  24. #define _DDXDDV_H_
  25. /////////////////////////////////////////////////////////////////////////////
  26. // Include Files
  27. /////////////////////////////////////////////////////////////////////////////
  28. /////////////////////////////////////////////////////////////////////////////
  29. // Global Function Prototypes
  30. /////////////////////////////////////////////////////////////////////////////
  31. void AFXAPI DDX_Number(
  32. IN OUT CDataExchange * pDX,
  33. IN int nIDC,
  34. IN OUT DWORD & rdwValue,
  35. IN DWORD dwMin,
  36. IN DWORD dwMax,
  37. IN BOOL bSigned = FALSE
  38. );
  39. void AFXAPI DDV_RequiredText(
  40. IN OUT CDataExchange * pDX,
  41. IN int nIDC,
  42. IN int nIDCLabel,
  43. IN const CString & rstrValue
  44. );
  45. /////////////////////////////////////////////////////////////////////////////
  46. #endif // _DDXDDV_H_