DirDialog.h
上传用户:lusi_8715
上传日期:2007-01-08
资源大小:199k
文件大小:0k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. // DirDialog.h: interface for the CDirDialog class.
  3. //
  4. //////////////////////////////////////////////////////////////////////
  5. #ifndef _CDIR_H
  6. #define _CDIR_H
  7. #include <windows.h>
  8. class CDirDialog
  9. {
  10.   public:
  11.     CDirDialog();
  12.     virtual ~CDirDialog();
  13.     int DoBrowse();
  14.     char *m_strPath;
  15.     char *m_strInitDir;
  16.     char *m_strSelDir;
  17.     char *m_strTitle;
  18.     
  19. int  m_iImageIndex;
  20. };
  21. #endif