I have a function define in header file as this:
int myfunction(VpTR*& viewporttable, wchar* vpname=L"*Active", OpenMode f=fR);
how i can call this function but ignore second argument? I tried calling it with the following code but an error message appeared: expected an expression
myfunction(myviewporttable,, fR);
can i omit this argument but it still understands L "* Active" as the called value?