Coding Conventions

The source code is all written in ANSI C for maximum portability. All code is written using "Hungarian" variable and function names which is standard in Windows development but may not be too well known outside of Windows. In header files the Hungarian notation is noted for any data types that we define, for example, the OFC Transaction structure is typed as "OFCTRN" and the Hungarian for variables of this type would be "ofctrn".

Common Hungarian used within the code is:

Hungarian Tag

Used For

sz

Character string (char *)

p

Pointer, example pofctrn is a pointer to an OFCTRN structure

pv

Pointer to void, like pvTrn is generic pointer to a transaction structure

Rc

Return Code