You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
657 B
26 lines
657 B
/*--------------------------------------------------------------------------*
|
|
*
|
|
* Microsoft Windows
|
|
* Copyright (C) Microsoft Corporation, 1992 - 1999
|
|
*
|
|
* File: amcdocmg.h
|
|
*
|
|
* Contents: Interface file for CAMCDocManager
|
|
*
|
|
* History: 01-Jan-98 jeffro Created
|
|
*
|
|
*--------------------------------------------------------------------------*/
|
|
|
|
#ifndef AMCDOCMG_H
|
|
#define AMCDOCMG_H
|
|
|
|
|
|
class CAMCDocManager : public CDocManager
|
|
{
|
|
public:
|
|
virtual BOOL DoPromptFileName(CString& fileName, UINT nIDSTitle,
|
|
DWORD lFlags, BOOL bOpenFileDialog, CDocTemplate* pTemplate);
|
|
};
|
|
|
|
|
|
#endif /* AMCDOCMG_H */
|