?? wrapper.c
字號(hào):
/***********************************************************************
* This program breaks the add structure into its components to be used *
* in LabView more readily. This way, LabView can unbundle a cluster *
* and assign the indivual elements to the parameters listed in this *
* function Wrap_dll_function (int x, double y, double* z) *
************************************************************************/
#include "Add.h"
#include "Wrapper.h"
int __stdcall Wrap_dll_function (int x, double y, double* z)
{
add temp;
temp.first = x;
temp.second = y;
temp.result = z; /*calls the code that adds the numbers. */
return dll_function(temp);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -