00001 00005 /* 00006 pGina ldapAuth code - based upon skeleton code for pGina plugin development 00007 Copyright (C) 2002 Micah Cooper 00008 00009 This program is free software; you can redistribute it and/or 00010 modify it under the terms of the GNU General Public License 00011 as published by the Free Software Foundation; either version 2 00012 of the License, or (at your option) any later version. 00013 00014 This program is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 GNU General Public License for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with this program; if not, write to the Free Software 00021 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 00022 00023 Email: coopermj@muohio.edu 00024 Snail Mail: 00025 Micah Cooper 00026 212A Kreger Hall 00027 Miami University 00028 Oxford OH 45056 00029 */ 00030 // SelectFile.cpp : implementation file 00031 // 00032 00033 #include "stdafx.h" 00034 #include "ldapauth_plus.h" 00035 #include "SelectFile.h" 00036 00037 #ifdef _DEBUG 00038 #define new DEBUG_NEW 00039 #undef THIS_FILE 00040 static char THIS_FILE[] = __FILE__; 00041 #endif 00042 00044 // SelectFile 00045 00046 IMPLEMENT_DYNAMIC(SelectFile, CFileDialog) 00047 00048 SelectFile::SelectFile(BOOL bOpenFileDialog, LPCTSTR lpszDefExt, LPCTSTR lpszFileName, 00049 DWORD dwFlags, LPCTSTR lpszFilter, CWnd* pParentWnd) : 00050 CFileDialog(bOpenFileDialog, lpszDefExt, lpszFileName, dwFlags, lpszFilter, pParentWnd) 00051 { 00052 } 00053 00054 00055 BEGIN_MESSAGE_MAP(SelectFile, CFileDialog) 00056 //{{AFX_MSG_MAP(SelectFile) 00057 // NOTE - the ClassWizard will add and remove mapping macros here. 00058 //}}AFX_MSG_MAP 00059 END_MESSAGE_MAP() 00060