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
0a51a820
Commit
0a51a820
authored
Dec 26, 2013
by
Frédéric Delanoy
Committed by
Alexandre Julliard
Dec 27, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oledb32/tests: Constify some character strings.
parent
43d05cc5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
convert.c
dlls/oledb32/tests/convert.c
+1
-1
database.c
dlls/oledb32/tests/database.c
+2
-2
No files found.
dlls/oledb32/tests/convert.c
View file @
0a51a820
...
...
@@ -2617,7 +2617,7 @@ static void test_converttodbdate(void)
{
DBLENGTH
dst_len
;
HRESULT
hr
;
static
WCHAR
strW
[]
=
{
'2'
,
'0'
,
'1'
,
'3'
,
'-'
,
'0'
,
'5'
,
'-'
,
'1'
,
'4'
,
0
};
static
const
WCHAR
strW
[]
=
{
'2'
,
'0'
,
'1'
,
'3'
,
'-'
,
'0'
,
'5'
,
'-'
,
'1'
,
'4'
,
0
};
DBDATE
ts
=
{
2013
,
5
,
14
};
DBDATE
dst
;
DBSTATUS
dst_status
;
...
...
dlls/oledb32/tests/database.c
View file @
0a51a820
...
...
@@ -209,9 +209,9 @@ static void test_errorinfo(void)
static
void
test_initializationstring
(
void
)
{
static
WCHAR
initstring_msdasql
[]
=
{
'P'
,
'r'
,
'o'
,
'v'
,
'i'
,
'd'
,
'e'
,
'r'
,
'='
,
'M'
,
'S'
,
'D'
,
'A'
,
'S'
,
'Q'
,
'L'
,
'.'
,
'1'
,
';'
,
static
const
WCHAR
initstring_msdasql
[]
=
{
'P'
,
'r'
,
'o'
,
'v'
,
'i'
,
'd'
,
'e'
,
'r'
,
'='
,
'M'
,
'S'
,
'D'
,
'A'
,
'S'
,
'Q'
,
'L'
,
'.'
,
'1'
,
';'
,
'D'
,
'a'
,
't'
,
'a'
,
' '
,
'S'
,
'o'
,
'u'
,
'r'
,
'c'
,
'e'
,
'='
,
'd'
,
'u'
,
'm'
,
'm'
,
'y'
,
0
};
static
WCHAR
initstring_sqloledb
[]
=
{
'P'
,
'r'
,
'o'
,
'v'
,
'i'
,
'd'
,
'e'
,
'r'
,
'='
,
'S'
,
'Q'
,
'L'
,
'O'
,
'L'
,
'E'
,
'D'
,
'B'
,
'.'
,
'1'
,
';'
,
static
const
WCHAR
initstring_sqloledb
[]
=
{
'P'
,
'r'
,
'o'
,
'v'
,
'i'
,
'd'
,
'e'
,
'r'
,
'='
,
'S'
,
'Q'
,
'L'
,
'O'
,
'L'
,
'E'
,
'D'
,
'B'
,
'.'
,
'1'
,
';'
,
'D'
,
'a'
,
't'
,
'a'
,
' '
,
'S'
,
'o'
,
'u'
,
'r'
,
'c'
,
'e'
,
'='
,
'd'
,
'u'
,
'm'
,
'm'
,
'y'
,
0
};
IDataInitialize
*
datainit
=
NULL
;
IDBInitialize
*
dbinit
=
NULL
;
...
...
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