Hi,
I use FDK 11 to convert a FrameMaker File to XML. Basic example as in the "Structured Import/Export API Programmer guide" works pretty well. But all my frame files have lengthy paragraphs which on conversion finds a line break after a length which seem to be set as default. By this, the XML length and readability becomes tedious. Here is the snap shot of transformation adn the piece of code used. Please let me know if there is any function which can eliminate this default behaviour.
#include "futils.h"
extern VoidT Structured_ApiEmergency FARGS((VoidT));
extern VoidT Structured_ApiInitialize FARGS((IntT init));
extern VoidT Structured_ApiCommand FARGS((IntT command));
extern VoidT Structured_ApiNotify FARGS((IntT notification,
F_ObjHandleT docId, StringT sparm,
IntT iparm));
VoidT F_ApiEmergency() {
Structured_ApiEmergency();
}
VoidT F_ApiInitialize(IntT init) {
Structured_ApiInitialize(init);
}
VoidT F_ApiCommand(IntT command) {
Structured_ApiCommand(command);
}
VoidT F_ApiNotify(IntT notification,
F_ObjHandleT docId, StringT sparm, IntT iparm) {
Structured_ApiNotify(notification, docId, sparm, iparm);
}
Thanks,
Venkat
[Message moved from General Discussion by moderator]