#include “BlackIceDEVMODE.h”
BOOL GetPdfAKeywords (BlackIceDEVMODE* pDevMode, LPTSTR pKeywords, DWORD* pSize);
Description
Returns the keywords of the PDF/A document. If pKeywords is NULL or too small, the function returns FALSE, and pSize will contain the number of bytes required for storing the keywords of the document. The maximum number of characters in the keywords is (MAX_KEYWORDS_LNG - 1). The MAX_KEYWORDS_LNG is declared in DEVMODE.h.
Parameters
BlackIceDEVMODE* pDevMode - pointer to the BlackIceDEVMODE structure.
LPTSTR pKeywords - pointer to the string
DWORD* pSize - pointer to variable that contains the length of the pKeywords in bytes.
Return value
TRUE on success, otherwise FALSE.
Programming Notes
None
Code Example
None