We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
this typedef
typedef union { char szFormula[NAO_LENGTH_FORMULA]; /* Formula / char szURL[NAO_LENGTH_URL]; / URL / DBHANDLE hDb; / Database / NOTEHANDLE hNote; / Note / NOTELINK nlNoteLink; / Link */ } NAO_ENTRY_RESOURCE;
gets this constructor:
/** * @param szFormula_or_szURL Formula * C type : char[2048], or URL * C type : char[512] */ public NAO_ENTRY_RESOURCE(byte szFormula_or_szURL[]) { super(); if ((szFormula_or_szURL.length != this.szFormula_or_szURL.length)) throw new IllegalArgumentException("Wrong array size !"); this.szURL = this.szFormula = szFormula_or_szURL; setType(byte[].class); }
and that can't be compiled
The text was updated successfully, but these errors were encountered:
No branches or pull requests
this typedef
typedef union
{
char szFormula[NAO_LENGTH_FORMULA]; /* Formula /
char szURL[NAO_LENGTH_URL]; / URL /
DBHANDLE hDb; / Database /
NOTEHANDLE hNote; / Note /
NOTELINK nlNoteLink; / Link */
} NAO_ENTRY_RESOURCE;
gets this constructor:
/**
* @param szFormula_or_szURL Formula
* C type : char[2048], or URL
* C type : char[512]
*/
public NAO_ENTRY_RESOURCE(byte szFormula_or_szURL[]) {
super();
if ((szFormula_or_szURL.length != this.szFormula_or_szURL.length))
throw new IllegalArgumentException("Wrong array size !");
this.szURL = this.szFormula = szFormula_or_szURL;
setType(byte[].class);
}
and that can't be compiled
The text was updated successfully, but these errors were encountered: