DIALDLG.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1997  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. //  MODULE:   dialdlg.h
  9. //
  10. //  PURPOSE:  contains dialdlg declarations
  11. //
  12. #ifndef _DIALDLG_H
  13. #define _DIALDLG_H
  14. //-------------------------------------------------------------------------
  15. //  Dialing dialog defines.
  16. #define IDT_MESSAGE     300
  17. #ifdef WIN16
  18. // Dialog box procedures must be exported in 16-bit applications for Windows.
  19. LRESULT CALLBACK __export DialDlg(HWND, UINT, WPARAM, LPARAM);
  20. #else
  21. LRESULT CALLBACK DialDlg(HWND, UINT, WPARAM, LPARAM);
  22. #endif
  23. #endif