1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- // YLGL.h : main header file for the YLGL application
- //
- #if !defined(AFX_YLGL_H__88616122_4218_48A0_9752_26D0146598CB__INCLUDED_)
- #define AFX_YLGL_H__88616122_4218_48A0_9752_26D0146598CB__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 "MainFrm.h"
- #include "MainFrimDlg2.h"
- #include "resource.h" // main symbols
- #include "SPBox.h"
- #include "./helper/ffsco.h"
- #include "sendhead.h"
- #include "refreshtable.h"
- #include "BtnST.h"
- #include "IsGrowthTx.h"
- #include "SearchFilter.h"
- extern void GongToLong(CString &date);
- extern void LongToGong(CString &date);
- extern CString GetModifyTime(CString path);
- extern void SetComboHei(CComboBox *pCombo, int hei);
- extern bool CheckFolderFileExist(CString &strPath);
- extern bool CheckFileExist(CString &strPath);
- extern BOOL LoadLia(CString path, BYTE **pData, BYTE **pDataBegin, Image **pBk, HWND hwnd);
- extern CString GetDateTime(Image *image);
- extern DEVMODE g_dm;
- extern CRect g_rc;
- extern CMainFrame *g_pMainWnd;
- extern MainFrimDlg2 *g_pMainWnd2;
- extern BOOL CALLBACK EnumChildProc(HWND hwnd,LPARAM lParam);
- extern float GetPointScale();
- extern float GetPointScale2();
- extern void WriteLog(CString str);
- extern CString GetLogStr(CString str);
- extern void ListToXLS(CListCtrl *pList, CString savepath, int mode);
- /////////////////////////////////////////////////////////////////////////////
- // CYLGLApp:
- // See YLGL.cpp for the implementation of this class
- //
- class CYLGLApp : public CWinApp
- {
- ULONG_PTR gdiplusToken;
- public:
- CYLGLApp();
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CYLGLApp)
- public:
- virtual BOOL InitInstance();
- virtual int ExitInstance();
- virtual int DoMessageBox(LPCTSTR lpszPrompt, UINT nType, UINT nIDPrompt);
- BOOL IsShareFolderExist(char *szServerName); // Jeff:在InitInstance时,检测共享文件夹是否存在;
- //}}AFX_VIRTUAL
- // Implementation
- //{{AFX_MSG(CYLGLApp)
- afx_msg void OnAppAbout();
- // 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_YLGL_H__88616122_4218_48A0_9752_26D0146598CB__INCLUDED_)
|