dialogs.h
上传用户:looem2003
上传日期:2014-07-20
资源大小:13733k
文件大小:1k
源码类别:

打印编程

开发平台:

Visual C++

  1. /*++
  2. Copyright (c) 1990-2003  Microsoft Corporation
  3. All rights reserved
  4. Module Name:
  5.     dialogs.h
  6. --*/
  7. #ifndef _DIALOGS_H_
  8. #define _DIALOGS_H_
  9. //
  10. // Use the window word of the entry field to store last valid entry
  11. //
  12. #define SET_LAST_VALID_ENTRY( hwnd, id, val ) 
  13.     SetWindowLongPtr( GetDlgItem( hwnd, id ), GWLP_USERDATA, (LONG_PTR)val )
  14. #define GET_LAST_VALID_ENTRY( hwnd, id ) 
  15.     GetWindowLongPtr( GetDlgItem( hwnd, id ), GWLP_USERDATA )
  16. BOOL
  17. PortNameInitDialog(
  18.             HWND        hwnd,
  19.     __in    PPORTDIALOG pPort
  20.     );
  21. BOOL
  22. PortNameCommandOK(
  23.     HWND    hwnd
  24.     );
  25. BOOL
  26. PortNameCommandCancel(
  27.     HWND hwnd
  28.     );
  29. BOOL
  30. ConfigureLPTPortInitDialog(
  31.             HWND        hwnd,
  32.     __in    PPORTDIALOG pPort
  33.     );
  34. BOOL
  35. ConfigureLPTPortCommandOK(
  36.     HWND    hwnd
  37.     );
  38. BOOL
  39. ConfigureLPTPortCommandCancel(
  40.     HWND hwnd
  41.     );
  42. BOOL
  43. ConfigureLPTPortCommandTransmissionRetryUpdate(
  44.     HWND hwnd,
  45.     WORD CtlId
  46.     );
  47. #endif // _DIALOGS_H_