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

Windows编程

开发平台:

Visual C++

  1. /******************************************************************************
  2. *       This is a part of the Microsoft Source Code Samples. 
  3. *       Copyright (C) 1993-1997 Microsoft Corporation.
  4. *       All rights reserved. 
  5. *       This source code is only intended as a supplement to 
  6. *       Microsoft Development Tools and/or WinHelp documentation.
  7. *       See these sources for detailed information regarding the 
  8. *       Microsoft samples programs.
  9. ******************************************************************************/
  10. /*
  11.    ddedlg.c
  12. */
  13. #include <windows.h>
  14. #include "ddeinst.h"
  15. #include "ddextrn.h"
  16. /********************************************************************
  17.    AboutBoxWndProc
  18.    Function to process messages to the about box.
  19. ********************************************************************/
  20. LRESULT APIENTRY AboutBoxWndProc (HWND hwnd, UINT uiMsg, WPARAM wParam,
  21.       LPARAM lParam) {
  22.    switch (uiMsg) {
  23.       case WM_COMMAND: {
  24.          EndDialog (hwnd, TRUE);
  25.          return (TRUE);
  26.       }/*endCase*/
  27.    }/*endSwitch*/
  28.    return (FALSE);
  29. }/* end AboutBoxWndProc */
  30. /********************************************************************
  31.    ProgressDlgWndProc
  32.    Function to process messages to the about box.
  33. ********************************************************************/
  34. LRESULT APIENTRY ProgressDlgWndProc (HWND hwnd, UINT uiMsg, WPARAM wParam,
  35.       LPARAM lParam) {
  36.    switch (uiMsg) {
  37.       case WM_DESTROY: {
  38.          return (TRUE);
  39.       }/*endCase*/
  40.    }/*endSwitch*/
  41.    return (FALSE);
  42. }/* end ProgressDlgWndProc */