1、合并master与2021.1

This commit is contained in:
xiejunjie
2021-12-03 11:25:35 +08:00
parent dc07b8879b
commit 4bd7d1b80b
981 changed files with 384342 additions and 6470 deletions
@@ -0,0 +1,20 @@
// RobotDll.h : RobotDll DLL µÄÖ÷Í·Îļþ
//
#pragma once
//#ifdef ROBOTDLL_EXPORTS
#define EXP_IMP __declspec(dllexport)
//#else
//#define EXP_IMP __declspec(dllimport)
//#endif
extern "C" EXP_IMP void OnStart();
extern "C" EXP_IMP long SetPosition(char* Position,char* ProgName,char* ProgNumber);
extern "C" EXP_IMP long Execute_Program(char* ProgName,int Method);
extern "C" EXP_IMP long Stop_Program();
extern "C" EXP_IMP void OnEnd();
extern "C" EXP_IMP char* GetPosition();
extern "C" EXP_IMP long Server_ON();
extern "C" EXP_IMP long Server_OFF();
extern "C" EXP_IMP long SetSpeed(char* Speed);