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
617db22d
Commit
617db22d
authored
Oct 09, 2006
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Oct 10, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
odbc32: Win64 printf format warning fixes.
parent
24195610
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
16 deletions
+15
-16
Makefile.in
dlls/odbc32/Makefile.in
+0
-1
proxyodbc.c
dlls/odbc32/proxyodbc.c
+15
-15
No files found.
dlls/odbc32/Makefile.in
View file @
617db22d
...
...
@@ -5,7 +5,6 @@ VPATH = @srcdir@
MODULE
=
odbc32.dll
IMPORTLIB
=
libodbc32.
$(IMPLIBEXT)
IMPORTS
=
advapi32 kernel32
EXTRADEFS
=
-DWINE_NO_LONG_AS_INT
C_SRCS
=
\
proxyodbc.c
...
...
dlls/odbc32/proxyodbc.c
View file @
617db22d
...
...
@@ -220,14 +220,14 @@ static void ODBC_ReplicateODBCInstToRegistry (SQLHENV hEnv)
if
((
reg_ret
=
RegSetValueExA
(
hDrivers
,
desc
,
0
,
REG_SZ
,
(
const
BYTE
*
)
"Installed"
,
10
))
!=
ERROR_SUCCESS
)
{
TRACE
(
"Error %
l
d replicating driver %s
\n
"
,
TRACE
(
"Error %d replicating driver %s
\n
"
,
reg_ret
,
desc
);
success
=
0
;
}
}
else
if
(
reg_ret
!=
ERROR_SUCCESS
)
{
TRACE
(
"Error %
l
d checking for %s in drivers
\n
"
,
TRACE
(
"Error %d checking for %s in drivers
\n
"
,
reg_ret
,
desc
);
success
=
0
;
}
...
...
@@ -244,12 +244,12 @@ static void ODBC_ReplicateODBCInstToRegistry (SQLHENV hEnv)
*/
if
((
reg_ret
=
RegCloseKey
(
hThis
))
!=
ERROR_SUCCESS
)
TRACE
(
"Error %
l
d closing %s key
\n
"
,
reg_ret
,
TRACE
(
"Error %d closing %s key
\n
"
,
reg_ret
,
desc
);
}
else
{
TRACE
(
"Error %
l
d ensuring driver key %s
\n
"
,
TRACE
(
"Error %d ensuring driver key %s
\n
"
,
reg_ret
,
desc
);
success
=
0
;
}
...
...
@@ -268,21 +268,21 @@ static void ODBC_ReplicateODBCInstToRegistry (SQLHENV hEnv)
}
if
((
reg_ret
=
RegCloseKey
(
hDrivers
))
!=
ERROR_SUCCESS
)
{
TRACE
(
"Error %
l
d closing hDrivers
\n
"
,
reg_ret
);
TRACE
(
"Error %d closing hDrivers
\n
"
,
reg_ret
);
}
}
else
{
TRACE
(
"Error %
l
d opening HKLM
\\
S
\\
O
\\
OI
\\
Drivers
\n
"
,
reg_ret
);
TRACE
(
"Error %d opening HKLM
\\
S
\\
O
\\
OI
\\
Drivers
\n
"
,
reg_ret
);
}
if
((
reg_ret
=
RegCloseKey
(
hODBCInst
))
!=
ERROR_SUCCESS
)
{
TRACE
(
"Error %
l
d closing HKLM
\\
S
\\
O
\\
ODBCINST.INI
\n
"
,
reg_ret
);
TRACE
(
"Error %d closing HKLM
\\
S
\\
O
\\
ODBCINST.INI
\n
"
,
reg_ret
);
}
}
else
{
TRACE
(
"Error %
l
d opening HKLM
\\
S
\\
O
\\
ODBCINST.INI
\n
"
,
reg_ret
);
TRACE
(
"Error %d opening HKLM
\\
S
\\
O
\\
ODBCINST.INI
\n
"
,
reg_ret
);
}
if
(
!
success
)
{
...
...
@@ -355,26 +355,26 @@ static void ODBC_ReplicateODBCToRegistry (int is_user, SQLHENV hEnv)
if
((
reg_ret
=
RegSetValueExA
(
hDSN
,
DRIVERKEY
,
0
,
REG_SZ
,
(
LPBYTE
)
desc
,
sizedesc
))
!=
ERROR_SUCCESS
)
{
TRACE
(
"Error %
l
d replicating description of "
TRACE
(
"Error %d replicating description of "
"%s(%s)
\n
"
,
reg_ret
,
dsn
,
desc
);
success
=
0
;
}
}
else
if
(
reg_ret
!=
ERROR_SUCCESS
)
{
TRACE
(
"Error %
l
d checking for description of %s
\n
"
,
TRACE
(
"Error %d checking for description of %s
\n
"
,
reg_ret
,
dsn
);
success
=
0
;
}
if
((
reg_ret
=
RegCloseKey
(
hDSN
))
!=
ERROR_SUCCESS
)
{
TRACE
(
"Error %
l
d closing %s DSN key %s
\n
"
,
TRACE
(
"Error %d closing %s DSN key %s
\n
"
,
reg_ret
,
which
,
dsn
);
}
}
else
{
TRACE
(
"Error %
l
d opening %s DSN key %s
\n
"
,
TRACE
(
"Error %d opening %s DSN key %s
\n
"
,
reg_ret
,
which
,
dsn
);
success
=
0
;
}
...
...
@@ -394,13 +394,13 @@ static void ODBC_ReplicateODBCToRegistry (int is_user, SQLHENV hEnv)
}
if
((
reg_ret
=
RegCloseKey
(
hODBC
))
!=
ERROR_SUCCESS
)
{
TRACE
(
"Error %
l
d closing %s ODBC.INI registry key
\n
"
,
reg_ret
,
TRACE
(
"Error %d closing %s ODBC.INI registry key
\n
"
,
reg_ret
,
which
);
}
}
else
{
TRACE
(
"Error %
l
d creating/opening %s ODBC.INI registry key
\n
"
,
TRACE
(
"Error %d creating/opening %s ODBC.INI registry key
\n
"
,
reg_ret
,
which
);
}
if
(
!
success
)
...
...
@@ -467,7 +467,7 @@ static void ODBC_ReplicateToRegistry (void)
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
int
i
;
TRACE
(
"Initializing or Finalizing proxy ODBC: %p,%
l
x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
TRACE
(
"Initializing or Finalizing proxy ODBC: %p,%x,%p
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
if
(
fdwReason
==
DLL_PROCESS_ATTACH
)
{
...
...
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