?? clustersimple.c
字號:
#include "extcode.h"
/* LabVIEW created typedef */
typedef struct {
double DBL;
long I32;
char Boolean;
} TD1;
_declspec(dllexport) void CLUSTERSimple(TD1 *input, TD1 *output);
_declspec(dllexport) void CLUSTERSimple(TD1 *input, TD1 *output)
{
output->DBL = input->DBL * input->DBL;
output->I32 = input->I32 / 2;
if(input->Boolean)
{
output->Boolean = FALSE;
}
else
{
output->Boolean = TRUE;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -