29 lines
498 B
C++
29 lines
498 B
C++
// RobotControlDll.h : RobotControlDll DLL 的主头文件
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifndef __AFXWIN_H__
|
|
#error "在包含此文件之前包含“stdafx.h”以生成 PCH 文件"
|
|
#endif
|
|
|
|
#include "resource.h" // 主符号
|
|
|
|
|
|
// CRobotControlDllApp
|
|
// 有关此类实现的信息,请参阅 RobotControlDll.cpp
|
|
//
|
|
|
|
class CRobotControlDllApp : public CWinApp
|
|
{
|
|
public:
|
|
CRobotControlDllApp();
|
|
|
|
// 重写
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
virtual BOOL OnCreateAggregates();
|
|
};
|