The following conventions should be observed when formatting simple Cicode declarations:
For example:
INT hFile,hForm; // WRONG
INT hFile; // RIGHT
INT hForm; // RIGHT
The reasons for this are:
For example:
STRING sFileName = "temp.dat"; // WRONG
INT iOffset = -1; // WRONG
INT iState = 3; // WRONG
STRING sFileName = "temp.dat"; // RIGHT
INT iOffset = -1; // RIGHT
INT iState = 3; // RIGHT
See Also
Using Cicode Programming Standards