📄 pbdll01.h
字号:
// pbdll01.h : pbdll01 DLL 的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error "在包含此文件之前包含“stdafx.h”以生成 PCH 文件"
#endif
#include "resource.h" // 主符号
// Cpbdll01App
// 有关此类实现的信息,请参阅 pbdll01.cpp
//
class Cpbdll01App : public CWinApp
{
public:
Cpbdll01App();
// 重写
public:
virtual BOOL InitInstance();
DECLARE_MESSAGE_MAP()
};
class INFO
{
public:
char area[12];
char insurance[10];
char organ[10];
float money;
public:
INFO(){}
~INFO(){}
};
static _RecordsetPtr m_pRecordset = NULL;
static _ConnectionPtr m_pConnection = NULL;
_bstr_t bstrSQL("select * from payment"); //查询语句
extern "C" _declspec(dllexport) void init(char DBType);
extern "C" _declspec(dllexport) void payment();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -