home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / MFC / SAMPLES / CHKBOOK / DOLLCENT.H_ / DOLLCENT.H
Encoding:
C/C++ Source or Header  |  1993-02-08  |  937 b   |  25 lines

  1. // dollcent.h: interface for DDX_DollarsCents
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and Microsoft
  9. // QuickHelp and/or WinHelp documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. ////////////////////////////////////////////////////////////////////////////
  13.  
  14.  
  15.  
  16. #define INVALID_DOLLARS_CENTS 0xffffffff
  17.  
  18. void AFXAPI DDX_DollarsCents(CDataExchange* pDX, int nIDC, DWORD& dwCents);
  19. BOOL GetDollarsCents(CWnd* pWnd, DWORD& dwCents);
  20. BOOL GetDollarsCents(HWND hWnd, DWORD& dwCents);
  21. void SetDollarsCents(CWnd* pWnd, DWORD dwCents);
  22. CString GetDollarsCentsFormatted(DWORD dwCents);
  23. CString GetDollarsCentsText(DWORD dwCents);
  24.  
  25.