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

📄 minisql.h

📁 用CJ60Lib界面库制作的SQL数据库客户与服务器程序。
💻 H
字号:
// miniSQL.h : main header file for the MINISQL application
//

#if !defined(AFX_MINISQL_H__1FD46762_C26C_4E4D_A45B_838549C705CB__INCLUDED_)
#define AFX_MINISQL_H__1FD46762_C26C_4E4D_A45B_838549C705CB__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 "MSLDoc.h"

/////////////////////////////////////////////////////////////////////////////
// Global function

void Message( LPCTSTR );

/////////////////////////////////////////////////////////////////////////////
// CMiniSQLApp:
// See miniSQL.cpp for the implementation of this class
//

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

	void Exit()
	{
		CWinApp::OnAppExit();
	}

// attribute
public:
	void Logon();
	CDocTemplate*	OnSelect();
	CMSLDoc*		IsDocExist( LPCTSTR title );
	char			dir[ 1024 ];
	DWORD			m_LogType;
	CString			m_LogName;
	BOOL			m_bConnection;

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

// Implementation
	//{{AFX_MSG(CMiniSQLApp)
	afx_msg void OnAppAbout();
	afx_msg void OnRefreshFileTree();
	afx_msg void OnFileNew();
	afx_msg void OnReLogon();
	afx_msg void OnUserManage();
	afx_msg void OnChangecode();
	afx_msg void OnHelpMe();
	afx_msg void OnConnect();
	afx_msg void OnDisconnect();
	afx_msg void OnUpdateDisconnect(CCmdUI* pCmdUI);
	afx_msg void OnUpdateUserManage(CCmdUI* pCmdUI);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_MINISQL_H__1FD46762_C26C_4E4D_A45B_838549C705CB__INCLUDED_)

⌨️ 快捷键说明

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