TWAIN Working Group

Newsletter Signup
Donate
Help keep TWAIN free
  • About TWAIN
    • What’s New?
    • News
    • Events
    • Membership
    • Consider a Donation
    • Contact Us
  • Why TWAIN?
  • Developers
    • Driver Developer
    • Application Developer
    • TWAIN Features
    • Specification & Tools
    • Self Certification Process
  • Support Forums
  • Scanner End-User
  • Find Certified Drivers
    • Facebook
    • LinkedIn
    • Vimeo

Problem with Sample App

Forums › TWAIN Classic › Problem with Sample App

  • This topic has 12 replies, 4 voices, and was last updated 9 years, 9 months ago by Hiroyuki.
Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • February 15, 2011 at 7:29 am #22660 Reply
    Hiroyuki
    Participant
    • Topics - 1
    • Replies - 3
    • Total Posts - 4

    The sample application downloaded from the following link
    doesn’t work with TWAIN 1.9-compliant scanner driver(Ex.CanoScan LiDE210).
    We can get access to the following link from TWAIN Top page(https://www.twain.org).

    http://sourceforge.net/projects/twain-samples/files/

    The modified application can work when we implement the following program.
    The following code is implemented in “loadDS” function of “TwainApp.cpp”.

    /* Send DG_CONTROL/DAT_IDENTITY/MSG_OPENDS */

    if((m_pDataSource->SupportedGroups & DF_DS2) == DF_DS2)
    {
    gUSE_CALLBACKS = true;
    /* Send DG_CONTROL/DAT_CALLBACK/MSG_REGISTER_CALLBACK */
    }
    else
    {
    gUSE_CALLBACKS = false;
    }

    We refer DF_DS2 and then set “gUSE_CALLBACKS” flag.

    The modified application can work when we delete the “case MSG_NULL”
    sentence implemented in “OnBnClickedScan” function at “mfcDlgConfigure.cpp”.
    (The “case MSG_NULL” sentence checks TW_EVENT.TWMessage Operation.)
    This is because the event loop will be terminated unexpectedly if the “case MSG_NULL” sentence exists.

    Does current Sample App need these two modifications?

    February 16, 2011 at 1:59 pm #25384 Reply
    MSM
    Participant
    • Topics - 0
    • Replies - 29
    • Total Posts - 29

    You are right for “case MSG_NULL”. The line has to be removed from OnBnClickedScan() and OnBnClickedUIOnly().

    About MSG_REGISTER_CALLBACK:
    This function is related to DSM only, but not DS. Sample DS uses DSM 2.0 and higher wich is compattible with callback functionality. So your change in loadDS is inappropriate.

    What exactly is the problem with CanoScan TWAIN DS?

    You can try the last DSM. There is a fix in TWAIN DSM related to the pre 2.1 DSs. You can download itfrom:
    http://downloads.sourceforge.net/project/twain-dsm/TWAIN%20DSM%202%20Win/twaindsm-2.1.4.win.bin.zip?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Ftwain-dsm%2F&ts=1297863960&use_mirror=voxel
    Copy TWAINDSM.dll from the ZIP file/twain32 to system32 directory (or SysWOW64 if 64 bit Windows) .

    February 22, 2011 at 10:52 pm #25385 Reply
    bouhmarc
    Participant
    • Topics - 0
    • Replies - 3
    • Total Posts - 3

    I’ve got the same probleme with the same solution :
    unless i use this code :
    if((m_pDataSource->SupportedGroups & DF_DS2) == DF_DS2)
    {
    gUSE_CALLBACKS = true;
    /* Send DG_CONTROL/DAT_CALLBACK/MSG_REGISTER_CALLBACK */
    }
    else
    {
    gUSE_CALLBACKS = false;
    }

    My sample app doesn’t work..
    I have a canon MX870 series duplex with feeder.

    I have another scan, a canon LIDE100 for which the sample app work without any modification…

    I’m a little confused because I don’t really understand where the problem is.

    I tried to read some articles and documentations, but all i found, is that the callback should be used. But for backwards compatibility, the events are stilled supported !
    This bothers me because my canon LIDE100 is 6 or 7 years old and the mx870 series is two weeks old….

    I’ve tried to download the new DSM from the link you mentionned, but that doesn’t correct the problem.
    So I wonder if the solution Hiroyuki found is viable or not ?

    Thanks for your return !

    Marc

    February 23, 2011 at 2:49 pm #25386 Reply
    MSM
    Participant
    • Topics - 0
    • Replies - 29
    • Total Posts - 29

    Can you send me the DSM log? Here is how to enable it: http://www.twainforum.org/viewtopic.php?t=4138

    You can try the last TWACKER as well. To use 2.0 DSM, check “TWAIN 2.0” in “File” menu. Here is the link: https://www.twain.org/docs/Twack_32.msi

    February 23, 2011 at 11:24 pm #25387 Reply
    bouhmarc
    Participant
    • Topics - 0
    • Replies - 3
    • Total Posts - 3

    Good evening…
    So i let the night do its job…
    and I found this !
    With twacker, it works, without any problems (my only problem is that i’m coding a DLL so i does not have any access to the main loop of my host…)

    With the sample app, it works as well but the MSG_REGISTER_CALLBACK failed (in my debogger only, because in the log it’s said to be OK)
    So at the line :


    if(TWRC_SUCCESS != (twrc = DSM_Entry(DG_CONTROL, DAT_CALLBACK, MSG_REGISTER_CALLBACK, (TW_MEMREF)&callback)))
    {
    gUSE_CALLBACKS = true;
    PrintCMDMessage("DG_CONTROL / DAT_CALLBACK / MSG_REGISTER_CALLBACK Failed: %un", twrc);
    }
    else
    {
    gUSE_CALLBACKS = false;
    }

    we’ve got gUSE_CALLBACKS = false !

    But in my own DLL, the MSG_REGISTER_CALLBACK works (in my debugger too), so my loop don’t treat the message but wait for the callback to be called… and it never is….

    here is my log for the sample app :
    sorry for the flood (there’s another log below…)

    Quote:
    [001041484 dsm.cpp 398 183 00000920] TWAIN Working Group

    [001041484 dsm.cpp 399 183 00000920] TWAIN 32 Source Manager (Image Acquisition Interface)

    [001041484 dsm.cpp 400 183 00000920] version: 2, 1, 1, 0

    [001041484 dsm.cpp 2239 183 00000920] DG_CONTROL/DAT_PARENT/MSG_OPENDSM

    [001041484 apps.cpp 351 183 00000920] Application: “TWAIN Working Group”

    [001041484 apps.cpp 352 183 00000920] “Sample TWAIN App”

    [001041484 apps.cpp 353 183 00000920] “MFC GUI TWAIN app” version: 2.0

    [001041484 apps.cpp 354 183 00000920] TWAIN 2.1

    [001041500 apps.cpp 1375 127 00000920] Could not find DS_Entry function in DS: C:WINDOWStwain_32wiatwain.ds

    [001041500 apps.cpp 645 127 00000920] Condition Code: DS or DSM reported error, application shouldn’t

    [001041531 apps.cpp 1388 0 00000920] Loaded library: C:WINDOWStwain_32CNQL20CISDS.DS

    [001041562 apps.cpp 1388 0 00000920] Loaded library: C:WINDOWStwain_32MX870 seriesCISDS.DS

    [001041562 dsm.cpp 2274 18 00000920] TWRC_SUCCESS

    [001041562 dsm.cpp 2239 18 00000920] DG_CONTROL/DAT_ENTRYPOINT/MSG_GET

    [001041562 dsm.cpp 2274 18 00000920] TWRC_SUCCESS

    [001041562 dsm.cpp 2239 18 00000920] DG_CONTROL/DAT_IDENTITY/MSG_GETFIRST

    [001041562 dsm.cpp 2274 18 00000920] TWRC_SUCCESS

    [001041562 dsm.cpp 2239 18 00000920] DG_CONTROL/DAT_IDENTITY/MSG_GETNEXT

    [001041562 dsm.cpp 2274 18 00000920] TWRC_SUCCESS

    [001041562 dsm.cpp 2239 18 00000920] DG_CONTROL/DAT_IDENTITY/MSG_GETNEXT

    [001041562 dsm.cpp 2274 18 00000920] TWRC_ENDOFLIST

    [001044406 dsm.cpp 2239 18 00000920] DG_CONTROL/DAT_IDENTITY/MSG_OPENDS

    [001044406 apps.cpp 1320 18 00000920] Datasource: “Canon Inc.”

    [001044406 apps.cpp 1321 18 00000920] “TWAIN Scanners”

    [001044406 apps.cpp 1322 18 00000920] “Canon MX870 ser” version: 16.0

    [001044406 apps.cpp 1323 18 00000920] TWAIN 1.9

    [001044421 apps.cpp 1388 0 00000920] Loaded library: C:WINDOWStwain_32MX870 seriesCISDS.DS

    [001046078 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001046890 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_CALLBACK/MSG_REGISTER_CALLBACK

    [001046890 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001047000 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_SUPPORTEDCAPS

    [001047000 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ARRAY

    [001047000 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GETLABEL/CAP_AUTOFEED

    [001047000 dsm.cpp 2274 0 00000920] TWRC_FAILURE

    [001047000 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001047000 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001047000 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_AUTOFEED

    [001047015 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001047015 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_AUTOFEED

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_DEVICEONLINE

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_DEVICEONLINE

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_DUPLEX

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_DUPLEX

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_DUPLEXENABLED

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_DUPLEXENABLED

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERALIGNMENT

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERALIGNMENT

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERENABLED

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERENABLED

    [001047015 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001047015 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERLOADED

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERLOADED

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERORDER

    [001052265 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001052265 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERORDER

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_INDICATORS

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_INDICATORS

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_PAPERDETECTABLE

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_PAPERDETECTABLE

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_UICONTROLLABLE

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_UICONTROLLABLE

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_XFERCOUNT

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_XFERCOUNT

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_BITDEPTH

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_BITDEPTH

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_BITORDER

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_BITORDER

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_BRIGHTNESS

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_BRIGHTNESS

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_COMPRESSION

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_COMPRESSION

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001052265 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_CONTRAST

    [001052265 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_CONTRAST

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_FRAMES

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_FRAMES

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_IMAGEFILEFORMAT

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_IMAGEFILEFORMAT

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_LIGHTPATH

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_LIGHTPATH

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_MINIMUMHEIGHT

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_MINIMUMHEIGHT

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_MINIMUMWIDTH

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_MINIMUMWIDTH

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PHYSICALHEIGHT

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PHYSICALHEIGHT

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PHYSICALWIDTH

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PHYSICALWIDTH

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PIXELFLAVOR

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PIXELFLAVOR

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PIXELTYPE

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001054453 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PIXELTYPE

    [001054453 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PLANARCHUNKY

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PLANARCHUNKY

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_SUPPORTEDSIZES

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_SUPPORTEDSIZES

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_THRESHOLD

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_THRESHOLD

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_UNITS

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_UNITS

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XFERMECH

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XFERMECH

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XNATIVERESOLUTION

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XNATIVERESOLUTION

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XRESOLUTION

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XRESOLUTION

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XSCALING

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XSCALING

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_YNATIVERESOLUTION

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_YNATIVERESOLUTION

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_YRESOLUTION

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_YRESOLUTION

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_YSCALING

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_YSCALING

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054468 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054468 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054468 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054468 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054468 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054468 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054468 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054468 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054468 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054468 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054468 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054468 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054468 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054484 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054484 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054484 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054484 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054484 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054484 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054484 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054484 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054484 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054484 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054484 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054484 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054484 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054484 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054484 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054500 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054500 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054500 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054500 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054500 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054500 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054500 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054500 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054500 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054500 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054500 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054500 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054500 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054500 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054515 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054515 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054515 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054515 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054515 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054515 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054515 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054515 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001054515 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054515 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054515 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054515 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001054515 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054515 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054515 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054515 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xfeee

    [001054515 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001054515 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001054515 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xfeee

    [001054515 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERENABLED

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_SET/CAP_FEEDERENABLED TWON_ONEVALUE

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_AUTOFEED

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_AUTOFEED

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_DEVICEONLINE

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_DEVICEONLINE

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_DUPLEX

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_DUPLEX

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_DUPLEXENABLED

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_DUPLEXENABLED

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERALIGNMENT

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERALIGNMENT

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERENABLED

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERENABLED

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERLOADED

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERLOADED

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERORDER

    [001058609 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001058609 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERORDER

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_INDICATORS

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_INDICATORS

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_PAPERDETECTABLE

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_PAPERDETECTABLE

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_UICONTROLLABLE

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_UICONTROLLABLE

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_XFERCOUNT

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_XFERCOUNT

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_BITDEPTH

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001058609 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_BITDEPTH

    [001058609 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058625 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_BITORDER

    [001058625 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058625 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_BITORDER

    [001058625 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058625 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_BRIGHTNESS

    [001058625 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001058625 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_BRIGHTNESS

    [001058625 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058625 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_COMPRESSION

    [001058625 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001058625 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_COMPRESSION

    [001058625 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001058625 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_CONTRAST

    [001058625 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_CONTRAST

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_FRAMES

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_FRAMES

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_IMAGEFILEFORMAT

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_IMAGEFILEFORMAT

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_LIGHTPATH

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_LIGHTPATH

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_MINIMUMHEIGHT

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_MINIMUMHEIGHT

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_MINIMUMWIDTH

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_MINIMUMWIDTH

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PHYSICALHEIGHT

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PHYSICALHEIGHT

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PHYSICALWIDTH

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PHYSICALWIDTH

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PIXELFLAVOR

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PIXELFLAVOR

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PIXELTYPE

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PIXELTYPE

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PLANARCHUNKY

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PLANARCHUNKY

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_SUPPORTEDSIZES

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_SUPPORTEDSIZES

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_THRESHOLD

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_THRESHOLD

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_UNITS

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_UNITS

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XFERMECH

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XFERMECH

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XNATIVERESOLUTION

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XNATIVERESOLUTION

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XRESOLUTION

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001059796 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XRESOLUTION

    [001059796 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XSCALING

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XSCALING

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_YNATIVERESOLUTION

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_YNATIVERESOLUTION

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_YRESOLUTION

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_YRESOLUTION

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_YSCALING

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_YSCALING

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059812 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059812 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059812 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059812 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059812 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059812 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059812 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059812 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059812 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059812 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059812 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059828 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059828 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059828 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059828 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059828 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059828 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059828 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059828 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059828 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059828 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059828 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059828 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059843 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059843 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059843 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059843 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059843 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059843 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059843 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059843 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059843 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059843 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059843 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059843 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059859 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059859 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059859 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059859 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059859 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059859 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059859 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059859 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059859 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059859 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059859 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059859 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001059859 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059875 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059875 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059875 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001059875 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059875 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001059875 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059875 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059875 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059875 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001059875 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059875 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xfeee

    [001059875 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001059875 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001059875 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001059875 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xfeee

    [001059875 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001103671 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_USERINTERFACE/MSG_ENABLEDS

    [001103828 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001109171 dsm.cpp 2239 0 00000920] DG_IMAGE/DAT_IMAGEINFO/MSG_GET

    [001109171 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001109171 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GETCURRENT/ICAP_XFERMECH

    [001109171 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001109171 dsm.cpp 2239 0 00000920] DG_IMAGE/DAT_IMAGEINFO/MSG_GET

    [001109171 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001109171 dsm.cpp 2239 0 00000920] DG_IMAGE/DAT_IMAGENATIVEXFER/MSG_GET

    [001123968 dsm.cpp 2274 0 00000920] TWRC_XFERDONE

    [001126000 dsm.cpp 2239 0 00000920] DG_IMAGE/DAT_EXTIMAGEINFO/MSG_GET

    [001126000 dsm.cpp 2274 0 00000920] TWRC_FAILURE

    [001126000 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_PENDINGXFERS/MSG_ENDXFER

    [001126015 dsm.cpp 2274 5 00000920] TWRC_SUCCESS

    [001126015 dsm.cpp 2239 5 00000920] DG_IMAGE/DAT_IMAGEINFO/MSG_GET

    [001127375 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001127390 dsm.cpp 2239 0 00000920] DG_IMAGE/DAT_IMAGENATIVEXFER/MSG_GET

    [001133843 dsm.cpp 2274 0 00000920] TWRC_XFERDONE

    [001133843 dsm.cpp 2239 0 00000920] DG_IMAGE/DAT_EXTIMAGEINFO/MSG_GET

    [001133843 dsm.cpp 2274 0 00000920] TWRC_FAILURE

    [001133843 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_PENDINGXFERS/MSG_ENDXFER

    [001136671 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136671 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_USERINTERFACE/MSG_DISABLEDS

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_AUTOFEED

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_AUTOFEED

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_DEVICEONLINE

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_DEVICEONLINE

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_DUPLEX

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_DUPLEX

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_DUPLEXENABLED

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_DUPLEXENABLED

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERALIGNMENT

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERALIGNMENT

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERENABLED

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERENABLED

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERLOADED

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERLOADED

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_FEEDERORDER

    [001136687 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001136687 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_FEEDERORDER

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_INDICATORS

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_INDICATORS

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_PAPERDETECTABLE

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_PAPERDETECTABLE

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_UICONTROLLABLE

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_UICONTROLLABLE

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_XFERCOUNT

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_XFERCOUNT

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_BITDEPTH

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_BITDEPTH

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_BITORDER

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_BITORDER

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_BRIGHTNESS

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_BRIGHTNESS

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_COMPRESSION

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_COMPRESSION

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001136687 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_CONTRAST

    [001136687 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_CONTRAST

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_FRAMES

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_FRAMES

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_IMAGEFILEFORMAT

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_IMAGEFILEFORMAT

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_LIGHTPATH

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_LIGHTPATH

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_MINIMUMHEIGHT

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_MINIMUMHEIGHT

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_MINIMUMWIDTH

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_MINIMUMWIDTH

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PHYSICALHEIGHT

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PHYSICALHEIGHT

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PHYSICALWIDTH

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PHYSICALWIDTH

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PIXELFLAVOR

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PIXELFLAVOR

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PIXELTYPE

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PIXELTYPE

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_PLANARCHUNKY

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_PLANARCHUNKY

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_SUPPORTEDSIZES

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_SUPPORTEDSIZES

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_THRESHOLD

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_THRESHOLD

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_UNITS

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_UNITS

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XFERMECH

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ENUMERATION

    [001137765 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XFERMECH

    [001137765 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XNATIVERESOLUTION

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XNATIVERESOLUTION

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XRESOLUTION

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XRESOLUTION

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_XSCALING

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_XSCALING

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_YNATIVERESOLUTION

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_ONEVALUE

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_YNATIVERESOLUTION

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_YRESOLUTION

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_YRESOLUTION

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/ICAP_YSCALING

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS TWON_RANGE

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/ICAP_YSCALING

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001137781 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001137781 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xbaad

    [001137781 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001137781 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xbaad

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_GET/CAP_0xf00d

    [001137781 dsm.cpp 2274 0 00000920] TWRC_FAILURE TWON_DONTCARE16

    [001137781 dsm.cpp 2239 0 00000920] DG_CONTROL/DAT_STATUS/MSG_GET

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001137781 dsm.cpp 2235 0 00000920] DG_CONTROL/DAT_CAPABILITY/MSG_QUERYSUPPORT/CAP_0xf00d

    [001137781 dsm.cpp 2274 0 00000920] TWRC_SUCCESS

    [001

    February 24, 2011 at 2:02 pm #25388 Reply
    MSM
    Participant
    • Topics - 0
    • Replies - 29
    • Total Posts - 29

    In the code you just posted, if MSG_REGISTER_CALLBACK succeeds gUSE_CALLBACKS will be false. It must me the opposite:


    if(TWRC_SUCCESS != (twrc = DSM_Entry(DG_CONTROL, DAT_CALLBACK, MSG_REGISTER_CALLBACK, (TW_MEMREF)&callback)))
    {
    PrintCMDMessage("DG_CONTROL / DAT_CALLBACK / MSG_REGISTER_CALLBACK Failed: %un", twrc);
    gUSE_CALLBACKS = false;
    }
    else
    {
    gUSE_CALLBACKS = true;
    }

    When coding TWAIN App into the DLL you have to assure that all calls to TWAIN DS come from one thread. The best way is to create your own thread. If you do not do this, then you have to block your App “Scan” call and create a loop (like one in OnBnClickedScan()) so you can transfer the messages to the DS.

    February 26, 2011 at 12:52 pm #25389 Reply
    bouhmarc
    Participant
    • Topics - 0
    • Replies - 3
    • Total Posts - 3

    Hi

    I made a mistake in the code i posted…
    This was a modified code to test..
    With the correct code, the sample app does’nt work anymore.

    here is the part of the log which should interest :

    [134637562 dsm.cpp 2239 0 000000F4] DG_CONTROL/DAT_USERINTERFACE/MSG_ENABLEDS

    [134637703 dsm.cpp 2274 0 000000F4] TWRC_SUCCESS

    [134735437 dsm.cpp 2239 0 000000F4] DG_CONTROL/DAT_USERINTERFACE/MSG_DISABLEDS

    [134735437 dsm.cpp 2274 0 000000F4] TWRC_SUCCESS

    >>>> Here i’m stuck in the loop of GetMessage which never test the message but wait for the callback to be called…
    Then I quit the application so we’ve got the next lines (CLOSE_DS and CLOSE_DSM)

    [134735437 dsm.cpp 2239 0 000000F4] DG_CONTROL/DAT_IDENTITY/MSG_CLOSEDS

    [134736062 dsm.cpp 2274 0 000000F4] TWRC_SUCCESS

    [134736062 dsm.cpp 2239 0 000000F4] DG_CONTROL/DAT_PARENT/MSG_CLOSEDSM

    [134736062 dsm.cpp 2274 0 000000F4] TWRC_SUCCESS

    March 4, 2011 at 8:17 pm #25390 Reply
    MSM
    Participant
    • Topics - 0
    • Replies - 29
    • Total Posts - 29

    There is something wrong with the App. Message loop must be running between MSG_ENABLEDS and MSG_DISABLEDS. But you says that you wait for the messages after MSG_DISABLEDS

    March 22, 2011 at 10:57 am #25391 Reply
    Hiroyuki
    Participant
    • Topics - 1
    • Replies - 3
    • Total Posts - 4

    I tried the latest DSM2.1.4, but I cannot resolve the problem.
    (I got the latest DSM2.1.4 from the link you mentioned before.)

    The sample application has backward-compatibility for TWAIN 1.X.
    However, the sample application does not load TWAIN 1.0 DSM(“TWAIN_32.DLL”).
    (The sample application loads only TWAIN 2.0 DSM(“TWAINDSM.DLL”) )
    We hope that the sample application implements that users can load both
    1.0 DSM and 2.0 DSM.

    The followings are the reasons.

    1.Some users want to use the 32bit-TWAIN 1.0 DSM(“TWAIN_32.DLL”).
    This is because the 32bit-TWAIN 1.0 DSM(“TWAIN_32.DLL”) is compatible
    with many TWAIN applications and TWAIN Data sources and it is bundled
    with Windows OS.

    2.Some TWAIN application developers can’t distribute TWAIN 2.0 DSM because
    of the Open-GPL license.

    3.We can’t get sample application for TWAIN 1.x from TWAIN Top page(https://www.twain.org).

    March 22, 2011 at 1:06 pm #25392 Reply
    MSM
    Participant
    • Topics - 0
    • Replies - 29
    • Total Posts - 29

    2.0 DSM will load 1.0 DSM if the DS is 1.x.

    It is possible that you have multiple twain_32.dll in your system. The only allowed place is , but not

    April 5, 2011 at 9:21 am #25393 Reply
    Hiroyuki
    Participant
    • Topics - 1
    • Replies - 3
    • Total Posts - 4

    I suggest that a user can choose either a) and b), depending on the
    situation.

    a) App <-> DSM 2.0 <-> DSM 1.0 <-> DS 1.0
    b) App <->DSM 1.0 <-> DS 1.0

    Some user may hesitate about distributing GPL licensed module ( TWAIN
    2.0 DSM).

    April 5, 2011 at 5:02 pm #25394 Reply
    jimwatters
    Participant
    • Topics - 2
    • Replies - 72
    • Total Posts - 74

    The TWAIN2 DSM is Licensed as GNU Library or Lesser General Public License (LGPL) not GPL.
    http://en.wikipedia.org/wiki/GNU_Lesser_General_Public_License

    LGPL was chosen to allow application and driver developers the freedom to link to the TWAIN 2 DSM.

    Jim Watters

    April 8, 2011 at 9:24 am #25395 Reply
    Hiroyuki
    Participant
    • Topics - 1
    • Replies - 3
    • Total Posts - 4

    Scanner vender can only guarantee their TWAIN driver quality with the DSM v1.7 installed in Microsoft Windows.

    Because DSM2.0 may be changed suddenly.

    So sample application should provide the way to load DSM 1.7.

    Hiroyuki

  • Author
    Posts
Viewing 13 posts - 1 through 13 (of 13 total)
Reply To: Reply #25386 in Problem with Sample App
Your information:




Quick Links

Service Providers
TWAIN Support Forums
Membership
Contact Us
Privacy Policy

Newsletter Signup

TWAIN Working Group Family

TWAIN Working Group
TWAIN Direct®
TWAIN Resources
TWAIN Certified Drivers
PDF/raster

  • Facebook
  • GitHub
  • LinkedIn
  • Vimeo

Recent Topics

  • New project started to be available today, check it out
  • EPSON V600 TWAIN and WIA on Windows 10
  • When and how to use WaitForEvents command ?
  • Problem enumerating list of installed scanners in windows server 2012
  • Failed to create TWAIN progress! Error code is 1260.
  • Quarterly Newsletter
  • TWAIN Working Group Membership
  • Logo Usage
  • TWAIN License
  • Contact Us
Privacy Policy • Privacy Tools • Copyright © 2021 TWAIN Working Group • by iHwy, LLC • Log in

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.