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

Windows编程

开发平台:

Visual C++

  1. /************************************************************************
  2.   File: save.c
  3.   Purpose:
  4.     This file contains only one function that set the bDoOpenDlg global
  5.     variable to FALSE and then creates a dialog box with the same Callback
  6.     function as the DoOpenDialog() function does.
  7.     Since GetOpenFileName() and GetSaveFileName() both use the
  8.     OPENFILENAME structure to create their dialogs, one dialog
  9.     proc and dialog box can handle both.
  10.   Functions:
  11.     - DoSaveDialog()    -- Creates CDTEST's Open/Save dialog.
  12. ************************************************************************/
  13. #include <windows.h>
  14. #include <commdlg.h>
  15. #include "cdtest.h"
  16. #include "save.h"
  17. #include "open.h"
  18. /************************************************************************
  19.   Function: DoSaveDialog(HWND)
  20.   Purpose: To create the GetOpenFileName() and GetSaveFileName()
  21.            creation dialog.
  22.   Returns: Nothing.
  23.   Comments:
  24.     GetOpenFileName() and GetSaveFileName() are similiar enough so that
  25.     the same dialog can be used to edit their creation structure elements,
  26.     so a global variable "bDoOpenDlg" keeps track of which one to create
  27.     when the user clicks the OK or Multithread buttons...
  28. ************************************************************************/
  29. void DoSaveDialog(HWND hwnd)
  30. {
  31.   bDoOpenDlg = FALSE ;
  32.   DialogBox(hInst, MAKEINTRESOURCE(ID_OPENDIALOG), hwnd, OpenFunc) ;
  33. }