#include “BlackIceDEVMODE.h”
DWORD GetTextOutputLineBreak(BlackIceDEVMODE* pBlackIceDevMode)
Description
Returns the line break format used by the Printer Driver’s Text Output.
Parameters
Input value - pointer to the BlackIceDEVMODE structure
Return value
One of the values of the TEXTOUTPUT_LINEBREAK enum:
TEXTOUTPUT_LINEBREAK_CRLF, = 1 // Used on Windows systems
TEXTOUTPUT_LINEBREAK_LF, = 2 // Used on Mac OS X and Unix systems
TEXTOUTPUT_LINEBREAK_CR = 3 // Used on Mac OS 9 or older systems
Programming Notes
None
Code Example
None