Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
6812cbc8
Commit
6812cbc8
authored
Jul 13, 2004
by
Mike Hearn
Committed by
Alexandre Julliard
Jul 13, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a 16 bit pair DLL for TWAIN.
parent
d176dde0
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
61 additions
and
1 deletion
+61
-1
Makefile.in
dlls/Makefile.in
+4
-0
.cvsignore
dlls/twain/.cvsignore
+1
-0
Makefile.in
dlls/twain/Makefile.in
+7
-1
twain.spec
dlls/twain/twain.spec
+6
-0
twain16_main.c
dlls/twain/twain16_main.c
+43
-0
No files found.
dlls/Makefile.in
View file @
6812cbc8
...
...
@@ -218,6 +218,7 @@ WIN16_FILES = \
stress.dll.so
\
system.drv.so
\
toolhelp.dll.so
\
twain.dll.so
\
typelib.dll.so
\
user.exe.so
\
ver.dll.so
\
...
...
@@ -796,6 +797,9 @@ ttydrv.dll.so: ttydrv/ttydrv.dll.so
twain_32.dll.so
:
twain/twain_32.dll.so
$(RM)
$@
&&
$(LN_S)
twain/twain_32.dll.so
$@
twain.dll.so
:
twain_32.dll.so
$(RM)
$@
&&
$(LN_S)
twain_32.dll.so
$@
unicows.dll.so
:
unicows/unicows.dll.so
$(RM)
$@
&&
$(LN_S)
unicows/unicows.dll.so
$@
...
...
dlls/twain/.cvsignore
View file @
6812cbc8
Makefile
twain.spec.c
twain_32.dll.dbg.c
twain_32.spec.def
dlls/twain/Makefile.in
View file @
6812cbc8
...
...
@@ -3,10 +3,13 @@ TOPOBJDIR = ../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
twain_32.dll
IMPORTS
=
user32 gdi32 kernel32
ALTNAMES
=
twain.dll
IMPORTS
=
user32 gdi32 kernel32 ntdll
EXTRALIBS
=
@SANELIBS@
EXTRAINCL
=
@SANEINCL@
SPEC_SRCS16
=
$
(
ALTNAMES:.dll
=
.spec
)
C_SRCS
=
\
capability.c
\
ds_audio.c
\
...
...
@@ -15,6 +18,9 @@ C_SRCS = \
dsm_ctrl.c
\
twain32_main.c
C_SRCS16
=
\
twain16_main.c
@MAKE_DLL_RULES@
### Dependencies:
dlls/twain/twain.spec
0 → 100644
View file @
6812cbc8
1 pascal -ret16 DSM_Entry(ptr ptr long word word long) DSM_Entry16
#2 stub WEP
3 stub ChooseDlgProc
4 stub AboutDlgProc
5 stub WGDlgProc
6 stub InfoHook
dlls/twain/twain16_main.c
0 → 100644
View file @
6812cbc8
/*
* TWAIN 16-bit functions
*
* Copyright (C) 2004 Mike Hearn for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "twain.h"
#include "twain_i.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
twain
);
/* Main entry point for the TWAIN library */
TW_UINT16
WINAPI
DSM_Entry16
(
pTW_IDENTITY
pOrigin
,
pTW_IDENTITY
pDest
,
TW_UINT32
DG
,
TW_UINT16
DAT
,
TW_UINT16
MSG
,
TW_MEMREF
pData
)
{
FIXME
(
"stub
\n
"
);
return
TWRC_FAILURE
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment