1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- // UPhoneBox.h : main header file for the UPhoneBox application
- //
- #if !defined(AFX_UPhoneBox_H__34A06580_649D_40C7_ADC9_3491C60D9835__INCLUDED_)
- #define AFX_UPhoneBox_H__34A06580_649D_40C7_ADC9_3491C60D9835__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 "./include/sendhead.h"
- extern CString g_server2;
- extern BOOL g_bSendOK;
- extern SENDHEAD g_sendhead;
- extern COLORREF g_gridcol1;
- extern COLORREF g_gridcol2;
- extern CString g_mainpath;
- extern HWND g_hwnd[10];
- extern CString g_recordpath[10];
- extern CString g_recordsavepath[10];
- extern BOOL nNeedConn2;
- extern void WriteLogin(CString str);
- extern CArray<CStringArray, CStringArray>g_cominfoarray;
- extern int GetLengthEx(CString str);
- extern BOOL CheckExist(CString m_phone);
- typedef struct
- {
- BOOL bsql;
- int server[50];
- int user[50];
- int psw[50];
- }DBSAVE;
- extern void GetListData(BYTE code, CArray<CStringArray, CStringArray>*pListarray1, CString filter, int yearpos, int mode);
- /////////////////////////////////////////////////////////////////////////////
- // CUPhoneBoxApp:
- // See UPhoneBox.cpp for the implementation of this class
- //
- class CUPhoneBoxApp : public CWinApp
- {
- public:
- CUPhoneBoxApp();
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CUPhoneBoxApp)
- public:
- virtual BOOL InitInstance();
- //}}AFX_VIRTUAL
- // Implementation
- //{{AFX_MSG(CUPhoneBoxApp)
- // 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_UPhoneBox_H__34A06580_649D_40C7_ADC9_3491C60D9835__INCLUDED_)
|