This question refers to creating a CVI code module from TestStand 2013.
If I leave "None" selected in the "Code Template" dropdown. The generated function is
__declspec(dllexport) void FunctionName(...
If I generate the module from any of the TestStand default templates, I get
void __declspec(dllexport) __stdcall FunctionName(...
Now, if I want to use a Default template but pass in some extra parameters, I set the "Code Template" dropdown to the template and then back to none so I can add parameters to the function while retaining the default Teststand parameters. The problem comes when i generate the function in CVI I get
__declspec(dllexport) void FunctionName(...
Where is the CVI code template for a "None" Selection?