www.pudn.com > Fax_Event_Message.rar > Fax_Event_VC.h


// Fax_Event_VC.h : main header file for the Fax_Event_VC application 
// 
 
#if !defined(AFX_Fax_Event_VC_H__F07F9837_0FFD_437E_A657_F137751A1965__INCLUDED_) 
#define AFX_Fax_Event_VC_H__F07F9837_0FFD_437E_A657_F137751A1965__INCLUDED_ 
 
#if _MSC_VER > 1000 
#pragma once 
#endif // _MSC_VER > 1000 
 
#ifndef __AFXWIN_H__ 
	#error include 'stdafx.h' before including this file for PCH 
#endif 
 
#include "resource.h"		// main symbols 
#include "../../../../api/vc6.0/inc/shpa3api.h" 
 
typedef struct tagFAX_TASK 
{ 
	int			  nTrkCh;			//trunk channel 
	int			  nFaxCh;			//fax channel 
	char		  szCallNo[20];		//called party number 
	int			  nStartPage;		//start page 
	int			  nEndPage;			//end page 
	FAX_FILE_SCT  ffSCT[50];		//multi-file structure-see 'shpa3api.h' for detailed information 
	int			  nHowFile;			//modes of sending fax file: 
									//		   0-single file  1-multi-file  2- multi-file with page number  
	int			  nSCTNumber;		//number of files in ffSCT format 
	char		  szSendFile[100];	//file name sending 
	char		  szSendPath[100];	//path for sending file 
	struct tagFAX_TASK	  *pNext; 
}FAX_TASK, *PFAX_TASK; 
extern FAX_TASK *pFront, *pRear; 
 
extern DWORD	g_dwLanguageConversion; 
extern DWORD	g_dwCHINESE_SIMPLIFIED; 
void SetWinTextLab(CDialog* pDlg, int nID, CString str); 
int CALLBACK BrowseCallbackProc(HWND hwnd, UINT uMsg, LPARAM lp, LPARAM pData); 
///////////////////////////////////////////////////////////////////////////// 
// CFax_Event_VCApp: 
// See Fax_Event_VC.cpp for the implementation of this class 
// 
 
class CFax_Event_VCApp : public CWinApp 
{ 
public: 
	CFax_Event_VCApp(); 
 
// Overrides 
	// ClassWizard generated virtual function overrides 
	//{{AFX_VIRTUAL(CFax_Event_VCApp) 
	public: 
	virtual BOOL InitInstance(); 
	//}}AFX_VIRTUAL 
 
// Implementation 
 
	//{{AFX_MSG(CFax_Event_VCApp) 
		// NOTE - the ClassWizard will add and remove member functions here. 
		//    DO NOT EDIT what you see in these blocks of generated code ! 
	//}}AFX_MSG 
	DECLARE_MESSAGE_MAP() 
}; 
 
 
///////////////////////////////////////////////////////////////////////////// 
 
//{{AFX_INSERT_LOCATION}} 
// Microsoft Visual C++ will insert additional declarations immediately before the previous line. 
 
#endif // !defined(AFX_Fax_Event_VC_H__F07F9837_0FFD_437E_A657_F137751A1965__INCLUDED_)