Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 1 | /* |
| 2 | * TWAIN32 functions |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 3 | * |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 4 | * Copyright 2000 Shi Quan He <shiquan@cyberdude.com> |
Marcus Meissner | 125efed | 2006-05-08 20:05:42 +0200 | [diff] [blame] | 5 | * Copyright 2006 Marcus Meissner |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 6 | * |
| 7 | * This library is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation; either |
| 10 | * version 2.1 of the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This library is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU Lesser General Public |
| 18 | * License along with this library; if not, write to the Free Software |
Jonathan Ernst | 360a3f9 | 2006-05-18 14:49:52 +0200 | [diff] [blame] | 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 20 | */ |
| 21 | |
Francois Gouget | 10adf6b | 2004-09-13 18:06:46 +0000 | [diff] [blame] | 22 | #include "config.h" |
| 23 | |
Steven Edwards | 14e3b19 | 2003-08-22 05:05:56 +0000 | [diff] [blame] | 24 | #include <stdarg.h> |
| 25 | |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 26 | #include "windef.h" |
| 27 | #include "winbase.h" |
| 28 | #include "twain.h" |
| 29 | #include "twain_i.h" |
| 30 | #include "wine/debug.h" |
| 31 | |
| 32 | WINE_DEFAULT_DEBUG_CHANNEL(twain); |
| 33 | |
Marcus Meissner | 125efed | 2006-05-08 20:05:42 +0200 | [diff] [blame] | 34 | /* A helper function that looks up a destination identity in the active |
| 35 | source list */ |
| 36 | static activeDS *TWAIN_LookupSource (pTW_IDENTITY pDest) |
| 37 | { |
| 38 | activeDS *pSource; |
| 39 | |
| 40 | for (pSource = activeSources; pSource; pSource = pSource->next) |
| 41 | if (pSource->identity.Id == pDest->Id) |
| 42 | break; |
| 43 | return pSource; |
| 44 | } |
| 45 | |
Alexandre Julliard | 1e1313d | 2002-11-04 23:53:41 +0000 | [diff] [blame] | 46 | BOOL WINAPI DllMain (HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 47 | { |
Michael Stefaniuc | 41dd56c | 2006-09-29 01:19:00 +0200 | [diff] [blame^] | 48 | TRACE("%p,%x,%p\n", hinstDLL, fdwReason, lpvReserved); |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 49 | |
| 50 | switch (fdwReason) |
| 51 | { |
| 52 | case DLL_PROCESS_ATTACH: |
Dmitry Timoshkov | 4e1ef0c | 2003-06-30 20:53:48 +0000 | [diff] [blame] | 53 | DisableThreadLibraryCalls(hinstDLL); |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 54 | DSM_currentState = 2; |
| 55 | break; |
| 56 | |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 57 | case DLL_PROCESS_DETACH: |
| 58 | DSM_currentState = 1; |
| 59 | break; |
| 60 | } |
| 61 | |
| 62 | return TRUE; |
| 63 | } |
| 64 | |
| 65 | TW_UINT16 TWAIN_SourceManagerHandler ( |
| 66 | pTW_IDENTITY pOrigin, |
| 67 | TW_UINT16 DAT, |
| 68 | TW_UINT16 MSG, |
| 69 | TW_MEMREF pData) |
| 70 | { |
| 71 | TW_UINT16 twRC = TWRC_SUCCESS; |
| 72 | |
| 73 | switch (DAT) |
| 74 | { |
| 75 | case DAT_IDENTITY: |
| 76 | switch (MSG) |
| 77 | { |
| 78 | case MSG_CLOSEDS: |
| 79 | twRC = TWAIN_CloseDS (pOrigin, pData); |
| 80 | break; |
| 81 | |
| 82 | case MSG_GETDEFAULT: |
| 83 | twRC = TWAIN_IdentityGetDefault (pOrigin, pData); |
| 84 | break; |
| 85 | |
| 86 | case MSG_GETFIRST: |
| 87 | twRC = TWAIN_IdentityGetFirst (pOrigin, pData); |
| 88 | break; |
| 89 | |
| 90 | case MSG_GETNEXT: |
| 91 | twRC = TWAIN_IdentityGetNext (pOrigin, pData); |
| 92 | break; |
| 93 | |
| 94 | case MSG_OPENDS: |
| 95 | twRC = TWAIN_OpenDS (pOrigin, pData); |
| 96 | break; |
| 97 | |
| 98 | case MSG_USERSELECT: |
| 99 | twRC = TWAIN_UserSelect (pOrigin, pData); |
| 100 | break; |
| 101 | |
| 102 | default: |
| 103 | /* Unrecognized operation triplet */ |
| 104 | twRC = TWRC_FAILURE; |
| 105 | DSM_twCC = TWCC_BADPROTOCOL; |
| 106 | WARN("unrecognized operation triplet\n"); |
| 107 | break; |
| 108 | } |
| 109 | break; |
| 110 | |
| 111 | case DAT_PARENT: |
| 112 | switch (MSG) |
| 113 | { |
| 114 | case MSG_CLOSEDSM: |
| 115 | twRC = TWAIN_CloseDSM (pOrigin, pData); |
| 116 | break; |
| 117 | |
| 118 | case MSG_OPENDSM: |
| 119 | twRC = TWAIN_OpenDSM (pOrigin, pData); |
| 120 | break; |
| 121 | |
| 122 | default: |
| 123 | /* Unrecognized operation triplet */ |
| 124 | twRC = TWRC_FAILURE; |
| 125 | DSM_twCC = TWCC_BADPROTOCOL; |
| 126 | WARN("unrecognized operation triplet\n"); |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 127 | } |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 128 | break; |
| 129 | |
| 130 | case DAT_STATUS: |
Marcus Meissner | 125efed | 2006-05-08 20:05:42 +0200 | [diff] [blame] | 131 | if (MSG == MSG_GET) { |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 132 | twRC = TWAIN_GetDSMStatus (pOrigin, pData); |
Marcus Meissner | 125efed | 2006-05-08 20:05:42 +0200 | [diff] [blame] | 133 | } else { |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 134 | twRC = TWRC_FAILURE; |
| 135 | DSM_twCC = TWCC_BADPROTOCOL; |
| 136 | WARN("unrecognized operation triplet\n"); |
| 137 | } |
| 138 | break; |
| 139 | |
| 140 | default: |
| 141 | twRC = TWRC_FAILURE; |
| 142 | DSM_twCC = TWCC_BADPROTOCOL; |
| 143 | WARN("unrecognized operation triplet\n"); |
| 144 | break; |
| 145 | } |
| 146 | |
| 147 | return twRC; |
| 148 | } |
| 149 | |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 150 | |
| 151 | /* Main entry point for the TWAIN library */ |
| 152 | TW_UINT16 WINAPI |
| 153 | DSM_Entry (pTW_IDENTITY pOrigin, |
| 154 | pTW_IDENTITY pDest, |
| 155 | TW_UINT32 DG, |
| 156 | TW_UINT16 DAT, |
| 157 | TW_UINT16 MSG, |
| 158 | TW_MEMREF pData) |
| 159 | { |
| 160 | TW_UINT16 twRC = TWRC_SUCCESS; /* Return Code */ |
| 161 | |
| 162 | TRACE("(DG=%ld DAT=%d MSG=%d)\n", DG, DAT, MSG); |
Vincent Béron | 9a62491 | 2002-05-31 23:06:46 +0000 | [diff] [blame] | 163 | |
Marcus Meissner | 125efed | 2006-05-08 20:05:42 +0200 | [diff] [blame] | 164 | if (pDest) |
| 165 | { |
| 166 | activeDS *pSource = TWAIN_LookupSource (pDest); |
| 167 | /* This operation's destination is a source */ |
| 168 | |
| 169 | if (!pSource) { |
| 170 | ERR("No source associated with pDest %p\n", pDest); |
| 171 | DSM_twCC = TWCC_BADDEST; |
| 172 | return TWRC_FAILURE; |
| 173 | } |
| 174 | DSM_twCC = TWCC_SUCCESS; |
| 175 | TRACE("Forwarding %ld/%d/%d/%p to DS.\n", DG, DAT, MSG, pData); |
| 176 | twRC = pSource->dsEntry(pOrigin, DG, DAT, MSG, pData); |
| 177 | TRACE("return value is %d\n", twRC); |
| 178 | return twRC; |
| 179 | } |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 180 | switch (DG) |
| 181 | { |
| 182 | case DG_CONTROL: |
Marcus Meissner | 125efed | 2006-05-08 20:05:42 +0200 | [diff] [blame] | 183 | twRC = TWAIN_SourceManagerHandler (pOrigin, DAT, MSG, pData); |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 184 | break; |
| 185 | default: |
Marcus Meissner | 125efed | 2006-05-08 20:05:42 +0200 | [diff] [blame] | 186 | FIXME("The DSM does not handle DG %ld\n", DG); |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 187 | DSM_twCC = TWCC_BADPROTOCOL; |
| 188 | twRC = TWRC_FAILURE; |
| 189 | } |
Shi Quan He | 6b0720f | 2002-03-21 02:58:39 +0000 | [diff] [blame] | 190 | return twRC; |
| 191 | } |