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
4527aae2
Commit
4527aae2
authored
Apr 19, 2005
by
Francois Gouget
Committed by
Alexandre Julliard
Apr 19, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Assorted spelling fixes.
parent
98d336c3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
10 deletions
+10
-10
info.c
dlls/ntdll/tests/info.c
+5
-5
rtlstr.c
dlls/ntdll/tests/rtlstr.c
+1
-1
shellord.c
dlls/shell32/shellord.c
+1
-1
twain.h
dlls/twain/twain.h
+1
-1
ole.sgml
documentation/ole.sgml
+1
-1
custcntl.h
include/custcntl.h
+1
-1
No files found.
dlls/ntdll/tests/info.c
View file @
4527aae2
...
@@ -57,22 +57,22 @@ static void test_basic()
...
@@ -57,22 +57,22 @@ static void test_basic()
* every information class
* every information class
*/
*/
/* Use a non
existent info class */
/* Use a nonexistent info class */
trace
(
"Check non
existent info class
\n
"
);
trace
(
"Check nonexistent info class
\n
"
);
status
=
pNtQuerySystemInformation
(
-
1
,
NULL
,
0
,
NULL
);
status
=
pNtQuerySystemInformation
(
-
1
,
NULL
,
0
,
NULL
);
ok
(
status
==
STATUS_INVALID_INFO_CLASS
,
"Expected STATUS_INVALID_INFO_CLASS, got %08lx
\n
"
,
status
);
ok
(
status
==
STATUS_INVALID_INFO_CLASS
,
"Expected STATUS_INVALID_INFO_CLASS, got %08lx
\n
"
,
status
);
/* Use an exist
ent
class but with a zero-length buffer */
/* Use an exist
ing
class but with a zero-length buffer */
trace
(
"Check zero-length buffer
\n
"
);
trace
(
"Check zero-length buffer
\n
"
);
status
=
pNtQuerySystemInformation
(
SystemBasicInformation
,
NULL
,
0
,
NULL
);
status
=
pNtQuerySystemInformation
(
SystemBasicInformation
,
NULL
,
0
,
NULL
);
ok
(
status
==
STATUS_INFO_LENGTH_MISMATCH
,
"Expected STATUS_INFO_LENGTH_MISMATCH, got %08lx
\n
"
,
status
);
ok
(
status
==
STATUS_INFO_LENGTH_MISMATCH
,
"Expected STATUS_INFO_LENGTH_MISMATCH, got %08lx
\n
"
,
status
);
/* Use an exist
ent
class, correct length but no SystemInformation buffer */
/* Use an exist
ing
class, correct length but no SystemInformation buffer */
trace
(
"Check no SystemInformation buffer
\n
"
);
trace
(
"Check no SystemInformation buffer
\n
"
);
status
=
pNtQuerySystemInformation
(
SystemBasicInformation
,
NULL
,
sizeof
(
*
sbi
),
NULL
);
status
=
pNtQuerySystemInformation
(
SystemBasicInformation
,
NULL
,
sizeof
(
*
sbi
),
NULL
);
ok
(
status
==
STATUS_ACCESS_VIOLATION
,
"Expected STATUS_ACCESS_VIOLATION, got %08lx
\n
"
,
status
);
ok
(
status
==
STATUS_ACCESS_VIOLATION
,
"Expected STATUS_ACCESS_VIOLATION, got %08lx
\n
"
,
status
);
/* Use a exist
ent
class, correct length, a pointer to a buffer but no ReturnLength pointer */
/* Use a exist
ing
class, correct length, a pointer to a buffer but no ReturnLength pointer */
trace
(
"Check no ReturnLength pointer
\n
"
);
trace
(
"Check no ReturnLength pointer
\n
"
);
status
=
pNtQuerySystemInformation
(
SystemBasicInformation
,
sbi
,
sizeof
(
*
sbi
),
NULL
);
status
=
pNtQuerySystemInformation
(
SystemBasicInformation
,
sbi
,
sizeof
(
*
sbi
),
NULL
);
ok
(
status
==
STATUS_SUCCESS
,
"Expected STATUS_SUCCESS, got %08lx
\n
"
,
status
);
ok
(
status
==
STATUS_SUCCESS
,
"Expected STATUS_SUCCESS, got %08lx
\n
"
,
status
);
...
...
dlls/ntdll/tests/rtlstr.c
View file @
4527aae2
...
@@ -1315,7 +1315,7 @@ static const str2int_t str2int[] = {
...
@@ -1315,7 +1315,7 @@ static const str2int_t str2int[] = {
{
10
,
"0o1011101100"
,
0
,
STATUS_SUCCESS
},
{
10
,
"0o1011101100"
,
0
,
STATUS_SUCCESS
},
{
10
,
"0d1011101100"
,
0
,
STATUS_SUCCESS
},
{
10
,
"0d1011101100"
,
0
,
STATUS_SUCCESS
},
{
10
,
"0x1011101100"
,
0
,
STATUS_SUCCESS
},
{
10
,
"0x1011101100"
,
0
,
STATUS_SUCCESS
},
{
10
,
"o12345"
,
0
,
STATUS_SUCCESS
},
/* Octal alt
r
ough base is 10 */
{
10
,
"o12345"
,
0
,
STATUS_SUCCESS
},
/* Octal alt
h
ough base is 10 */
{
10
,
""
,
0
,
STATUS_SUCCESS
},
/* empty string */
{
10
,
""
,
0
,
STATUS_SUCCESS
},
/* empty string */
{
16
,
"1011101100"
,
286265600
,
STATUS_SUCCESS
},
{
16
,
"1011101100"
,
286265600
,
STATUS_SUCCESS
},
{
16
,
"-1011101100"
,
-
286265600
,
STATUS_SUCCESS
},
{
16
,
"-1011101100"
,
-
286265600
,
STATUS_SUCCESS
},
...
...
dlls/shell32/shellord.c
View file @
4527aae2
...
@@ -574,7 +574,7 @@ static INT CALLBACK SHADD_compare_mru(LPCVOID data1, LPCVOID data2, DWORD cbData
...
@@ -574,7 +574,7 @@ static INT CALLBACK SHADD_compare_mru(LPCVOID data1, LPCVOID data2, DWORD cbData
* mruhandle [IN] handle for created MRU list
* mruhandle [IN] handle for created MRU list
* doc_name [IN] null termed pure doc name
* doc_name [IN] null termed pure doc name
* new_lnk_name [IN] null termed path and file name for .lnk file
* new_lnk_name [IN] null termed path and file name for .lnk file
* buffer [IN/OUT] 2048 byte area to const
ur
ct MRU data
* buffer [IN/OUT] 2048 byte area to const
ru
ct MRU data
* len [OUT] ptr to int to receive space used in buffer
* len [OUT] ptr to int to receive space used in buffer
*
*
* RETURNS
* RETURNS
...
...
dlls/twain/twain.h
View file @
4527aae2
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
version 1.7, July 1997 Added Capabilities and data structure for
version 1.7, July 1997 Added Capabilities and data structure for
document imaging and digital cameras.
document imaging and digital cameras.
KHL.
KHL.
version 1.7, July 1997 Inserted Borland compatib
i
le structure packing
version 1.7, July 1997 Inserted Borland compatible structure packing
directives provided by Mentor. JMH
directives provided by Mentor. JMH
version 1.7, Aug 1997 Expanded file tabs to spaces.
version 1.7, Aug 1997 Expanded file tabs to spaces.
NOTE: future authors should be sure to have
NOTE: future authors should be sure to have
...
...
documentation/ole.sgml
View file @
4527aae2
...
@@ -789,7 +789,7 @@ static ICOM_VTABLE(IDirect3D) d3dvt = {
...
@@ -789,7 +789,7 @@ static ICOM_VTABLE(IDirect3D) d3dvt = {
</sect2>
</sect2>
<sect2>
<sect2>
<title>Ap
p
artments</title>
<title>Apartments</title>
<para>
<para>
Before a thread can use COM it must enter an apartment. Apartments are
Before a thread can use COM it must enter an apartment. Apartments are
...
...
include/custcntl.h
View file @
4527aae2
...
@@ -58,7 +58,7 @@ typedef int (CALLBACK *LPFNCCSIZETOTEXTW)(DWORD, DWORD, HFONT, LPWSTR);
...
@@ -58,7 +58,7 @@ typedef int (CALLBACK *LPFNCCSIZETOTEXTW)(DWORD, DWORD, HFONT, LPWSTR);
#define LPFNCCSIZETOTEXT WINELIB_NAME_AW(LPFNCCSIZETOTEXT)
#define LPFNCCSIZETOTEXT WINELIB_NAME_AW(LPFNCCSIZETOTEXT)
/* Custom Control style flags st
ur
cture */
/* Custom Control style flags st
ru
cture */
typedef
struct
tagCCSTYLEFLAGA
{
typedef
struct
tagCCSTYLEFLAGA
{
DWORD
flStyle
;
DWORD
flStyle
;
DWORD
flStyleMask
;
DWORD
flStyleMask
;
...
...
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