Writes the content of a typed buffer to the output file.
TUXEDO.bdh
TuxWriteBuffer(in hBuffer : number, in sText : string optional): boolean;
true if successful.
false otherwise.
|
dcltrans transaction TMain var hBuffer: number; begin // allocate buffer TuxGetBuffer(hBuffer,"FML", NULL, 1024); // store dummy values in fielded buffer TuxSetInt(hBuffer, 16, 832); TuxSetInt(hBuffer, 32, 173); // write buffer to output file TuxWriteBuffer(hBuffer, "buffer content"); end TMain;