⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fax_polling_vc.h

📁 VC6.0
💻 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 "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
	//Chinese: 多文件结构体 — 定义见"shpa3api.h"
	//English: multi-file structure-see 'shpa3api.h' for detailed information
	FAX_FILE_SCT  ffSCT[50];		
	//Chinese: 发送文件类型:0-单文件 1-多文件 2-可设置页码的多文件
	//English: modes of sending fax file:
	//		   0-single file  1-multi-file  2- multi-file with page number 
	int			  nHowFile;			
	//Chinese: ffSCT型多文件个数
	//English: number of files in ffSCT format
	int			  nSCTNumber;		
	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_Polling_VCApp:
// See Fax_Event_VC.cpp for the implementation of this class
//

class CFax_Polling_VCApp : public CWinApp
{
public:
	CFax_Polling_VCApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CFax_Polling_VCApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

// Implementation

	//{{AFX_MSG(CFax_Polling_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_)

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -