msi/tests: Return INVALID_FILE_SIZE from get_pf_file_size if the file can't be opened.
[wine] / dlls / twain_32 / twain_i.h
1 /*
2  * Copyright 2000 Corel Corporation
3  * Copyright 2006 Marcus Meissner
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
18  */
19
20 #ifndef _TWAIN32_H
21 #define _TWAIN32_H
22
23 #ifndef __WINE_CONFIG_H
24 # error You must include config.h first
25 #endif
26
27 #include <stdarg.h>
28
29 #include "windef.h"
30 #include "winbase.h"
31 #include "twain.h"
32
33 /* internal information about an active data source */
34 typedef struct tagActiveDS
35 {
36     struct tagActiveDS  *next;                  /* next active DS */
37     TW_IDENTITY         identity;               /* identity */
38     HMODULE             hmod;
39     DSENTRYPROC         dsEntry;
40 } activeDS;
41
42 TW_UINT16 DSM_initialized;      /* whether Source Manager is initialized */
43 TW_UINT16 DSM_currentState;     /* current state of Source Manager */
44 TW_UINT16 DSM_twCC;             /* current condition code of Source Manager */
45 TW_UINT32 DSM_sourceId;         /* source id generator */
46 TW_UINT16 DSM_currentDevice;    /* keep track of device during enumeration */
47
48 activeDS *activeSources;        /* list of active data sources */
49
50 /* Implementation of operation triplets (From Application to Source Manager) */
51 extern TW_UINT16 TWAIN_CloseDS
52            (pTW_IDENTITY pOrigin, TW_MEMREF pData);
53 extern TW_UINT16 TWAIN_IdentityGetDefault
54            (pTW_IDENTITY pOrigin, TW_MEMREF pData);
55 extern TW_UINT16 TWAIN_IdentityGetFirst
56            (pTW_IDENTITY pOrigin, TW_MEMREF pData);
57 extern TW_UINT16 TWAIN_IdentityGetNext
58            (pTW_IDENTITY pOrigin, TW_MEMREF pData);
59 extern TW_UINT16 TWAIN_OpenDS
60            (pTW_IDENTITY pOrigin, TW_MEMREF pData);
61 extern TW_UINT16 TWAIN_UserSelect
62            (pTW_IDENTITY pOrigin, TW_MEMREF pData);
63 extern TW_UINT16 TWAIN_CloseDSM
64            (pTW_IDENTITY pOrigin, TW_MEMREF pData);
65 extern TW_UINT16 TWAIN_OpenDSM
66            (pTW_IDENTITY pOrigin, TW_MEMREF pData);
67 extern TW_UINT16 TWAIN_GetDSMStatus
68            (pTW_IDENTITY pOrigin, TW_MEMREF pData);
69
70 #endif