In continuing my attempt to port my v8i mdl application to connect, I am having trouble identifying the "ScanList" and "ExtScanList" structures.
I have not been able to figure out how the examples using scan functions are doing it.
Here are the opening lines to my application cpp file:
#include <time.h>
#include <stdarg.h>
#include <wchar.h>
#include <fstream>
#include <windows.h>
#include <Mstn\MdlApi\MdlApi.h>
#include <Mstn\ISessionMgr.h>
#include <Mstn\MdlApi\rdbmslib.fdf>
#include <Mstn\MdlApi\dbdefs.h>
#include <DgnPlatform\TextBlock\TextBlock.h>
#include <DgnPlatform\TextHandlers.h>
#include <Bentley\Bentley.h>
#include <Mstn\MdlApi\mselems.h>
#include <Bentley\BeFileName.h>
#include <Bentley\WString.h>
#include <Mstn\MdlApi\msdgnmodelref.fdf>
#include <DgnPlatform\DgnTextStyleProperties.r.h>
#include <DgnPlatform\ElementHandle.h>
#include <DgnPlatform\DgnFile.h>
#include <Bentley/RefCounted.h>
#include <DgnPlatform\DgnFontManager.h>
#include <DgnPlatform\DgnPlatForm.h>
#include <DgnPlatform\ScanCriteria.h>
#include "T2GConnect.h" /* Contains Dlog IDs and typedefs for this app */
#include "T2GConnectcmd.h" /* Contains Command numbers for this app */
USING_NAMESPACE_BENTLEY
USING_NAMESPACE_BENTLEY_DGNPLATFORM
USING_NAMESPACE_BENTLEY_MSTNPLATFORM
USING_NAMESPACE_BENTLEY_MSTNPLATFORM_ELEMENT
Any help would be greatly appreciated! (Thanks in advance)