#include “BlackIceDEVMODE.h”
BOOL GetXMLOutputDir (BlackIceDEVMODE* pDevMode, LPTSTR pDirectory, DWORD* pSize);
Description
Returns the XML content directory. The max length is MAX_PATH (260) characters. If this string is not set or set to an empty string, the regular output directory is used instead. See the GetOutputDirectory function. If the buffer specified in pDirectory is not large enough or pDirectory is NULL, the required size is returned in pSize.
Parameters
BlackIceDEVMODE* pDevMode - pointer to the BlackIceDEVMODE structure.
LPTSTR pDirectory - pointer to the buffer
DWORD* pSize - pointer to variable that contains the length of the pDirectory in bytes.
Return value
TRUE on success, otherwise FALSE.
Programming Notes
None
Code Example
None