Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
cee8a76e
Commit
cee8a76e
authored
Sep 18, 2012
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
odbccu32: Add new dll.
parent
b0cefe89
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
116 additions
and
0 deletions
+116
-0
configure
configure
+1
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/odbccu32/Makefile.in
+8
-0
odbccu32.spec
dlls/odbccu32/odbccu32.spec
+37
-0
odbccu32_main.c
dlls/odbccu32/odbccu32_main.c
+42
-0
version.rc
dlls/odbccu32/version.rc
+27
-0
No files found.
configure
View file @
cee8a76e
...
...
@@ -15593,6 +15593,7 @@ wine_fn_config_dll objsel enable_objsel
wine_fn_config_dll odbc32 enable_odbc32 implib
wine_fn_config_dll odbccp32 enable_odbccp32 implib
wine_fn_config_test dlls/odbccp32/tests odbccp32_test
wine_fn_config_dll odbccu32 enable_odbccu32
wine_fn_config_dll ole2.dll16 enable_win16
wine_fn_config_dll ole2conv.dll16 enable_win16
wine_fn_config_dll ole2disp.dll16 enable_win16
...
...
configure.ac
View file @
cee8a76e
...
...
@@ -2866,6 +2866,7 @@ WINE_CONFIG_DLL(objsel)
WINE_CONFIG_DLL(odbc32,,[implib])
WINE_CONFIG_DLL(odbccp32,,[implib])
WINE_CONFIG_TEST(dlls/odbccp32/tests)
WINE_CONFIG_DLL(odbccu32)
WINE_CONFIG_DLL(ole2.dll16,enable_win16)
WINE_CONFIG_DLL(ole2conv.dll16,enable_win16)
WINE_CONFIG_DLL(ole2disp.dll16,enable_win16)
...
...
dlls/odbccu32/Makefile.in
0 → 100644
View file @
cee8a76e
MODULE
=
odbccu32.dll
C_SRCS
=
\
odbccu32_main.c
RC_SRCS
=
version.rc
@MAKE_DLL_RULES@
dlls/odbccu32/odbccu32.spec
0 → 100644
View file @
cee8a76e
4 stdcall SQLBindCol(long long long ptr long ptr) odbc32.SQLBindCol
5 stdcall SQLCancel(long) odbc32.SQLCancel
6 stub ReleaseCLStmtResources
11 stdcall SQLExecDirect(long str long) odbc32.SQLExecDirect
12 stdcall SQLExecute(long) odbc32.SQLExecute
13 stdcall SQLFetch(long) odbc32.SQLFetch
16 stdcall SQLFreeStmt(long long ) odbc32.SQLFreeStmt
19 stdcall SQLPrepare(long str long) odbc32.SQLPrepare
20 stdcall SQLRowCount(long ptr) odbc32.SQLRowCount
23 stdcall SQLTransact(long long long) odbc32.SQLTransact
26 stdcall SQLCloseCursor(long) odbc32.SQLCloseCursor
29 stdcall SQLEndTran(long long long) odbc32.SQLEndTran
30 stdcall SQLFetchScroll(long long long) odbc32.SQLFetchScroll
31 stdcall SQLFreeHandle(long long) odbc32.SQLFreeHandle
33 stdcall SQLGetDescField(long long long ptr long ptr) odbc32.SQLGetDescField
34 stdcall SQLGetDescRec(long long str long ptr ptr ptr ptr ptr ptr ptr) odbc32.SQLGetDescRec
38 stdcall SQLGetStmtAttr(long long ptr long ptr) odbc32.SQLGetStmtAttr
39 stdcall SQLSetConnectAttr(long long ptr long) odbc32.SQLSetConnectAttr
43 stdcall SQLGetData(long long long ptr long ptr) odbc32.SQLGetData
45 stdcall SQLGetInfo(long long ptr long ptr) odbc32.SQLGetInfo
46 stdcall SQLGetStmtOption(long long ptr) odbc32.SQLGetStmtOption
48 stdcall SQLParamData(long ptr) odbc32.SQLParamData
49 stdcall SQLPutData(long ptr long) odbc32.SQLPutData
50 stdcall SQLSetConnectOption(long long long) odbc32.SQLSetConnectOption
51 stdcall SQLSetStmtOption(long long long) odbc32.SQLSetStmtOption
59 stdcall SQLExtendedFetch(long long long ptr ptr) odbc32.SQLExtendedFetch
61 stdcall SQLMoreResults(long) odbc32.SQLMoreResults
62 stdcall SQLNativeSql(long str long str long ptr) odbc32.SQLNativeSql
63 stdcall SQLNumParams(long ptr) odbc32.SQLNumParams
64 stdcall SQLParamOptions(long long ptr) odbc32.SQLParamOptions
68 stdcall SQLSetPos(long long long long) odbc32.SQLSetPos
69 stdcall SQLSetScrollOptions(long long long long) odbc32.SQLSetScrollOptions
72 stdcall SQLBindParameter(long long long long long long long ptr long ptr) odbc32.SQLBindParameter
73 stdcall SQLSetDescField(long long long ptr long) odbc32.SQLSetDescField
74 stdcall SQLSetDescRec(long long long long long long long ptr ptr ptr) odbc32.SQLSetDescRec
76 stdcall SQLSetStmtAttr(long long ptr long) odbc32.SQLSetStmtAttr
78 stdcall SQLBulkOperations(long long) odbc32.SQLBulkOperations
dlls/odbccu32/odbccu32_main.c
0 → 100644
View file @
cee8a76e
/*
* ODBC Cursor Library
*
* Copyright 2012 Alistair Leslie-Hughes
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#include "config.h"
#include "wine/port.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
switch
(
fdwReason
)
{
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
break
;
case
DLL_PROCESS_DETACH
:
break
;
}
return
TRUE
;
}
dlls/odbccu32/version.rc
0 → 100644
View file @
cee8a76e
/*
* Copyright 2012 Alistair Leslie-Hughes
*
* 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*
*/
#define WINE_FILEDESCRIPTION_STR "Wine ODBC Cursor Library"
#define WINE_FILENAME_STR "odbcu32.dll"
#define WINE_FILEVERSION 6,1,7601,17632
#define WINE_FILEVERSION_STR "6.1.7601.17632"
#define WINE_PRODUCTVERSION 6,1,7601,17632
#define WINE_PRODUCTVERSION_STR "6.1.7601.17632"
#include "wine/wine_common_ver.rc"
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