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
e84f07de
Commit
e84f07de
authored
Feb 14, 2005
by
Rémi Assailly
Committed by
Alexandre Julliard
Feb 14, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
char -> const char fixes.
parent
fc0061f8
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
27 deletions
+26
-27
reader.c
dlls/richedit/reader.c
+19
-20
rtf.h
dlls/richedit/rtf.h
+5
-5
stdcharnames.h
dlls/richedit/stdcharnames.h
+1
-1
text_map.h
dlls/richedit/text_map.h
+1
-1
No files found.
dlls/richedit/reader.c
View file @
e84f07de
...
...
@@ -778,7 +778,7 @@ int oldBumpLine;
* part of the token text.
*/
void
RTFSetToken
(
RTF_Info
*
info
,
int
class
,
int
major
,
int
minor
,
int
param
,
char
*
text
)
void
RTFSetToken
(
RTF_Info
*
info
,
int
class
,
int
major
,
int
minor
,
int
param
,
c
onst
c
har
*
text
)
{
TRACE
(
"
\n
"
);
...
...
@@ -942,7 +942,7 @@ int RTFReadCharSetMap(RTF_Info *info, int csId)
* Return -1 if name is unknown.
*/
int
RTFStdCharCode
(
RTF_Info
*
info
,
char
*
name
)
int
RTFStdCharCode
(
RTF_Info
*
info
,
c
onst
c
har
*
name
)
{
int
i
;
...
...
@@ -962,7 +962,7 @@ int i;
* Return NULL if code is unknown.
*/
char
*
RTFStdCharName
(
RTF_Info
*
info
,
int
code
)
c
onst
c
har
*
RTFStdCharName
(
RTF_Info
*
info
,
int
code
)
{
if
(
code
<
0
||
code
>=
rtfSC_MaxChar
)
return
((
char
*
)
NULL
);
...
...
@@ -1065,10 +1065,10 @@ int RTFGetCharSet(RTF_Info *info)
static
void
ReadFontTbl
(
RTF_Info
*
info
)
{
RTFFont
*
fp
=
NULL
;
char
buf
[
rtfBufSiz
],
*
bp
;
int
old
=
-
1
;
char
*
fn
=
"ReadFontTbl"
;
RTFFont
*
fp
=
NULL
;
char
buf
[
rtfBufSiz
],
*
bp
;
int
old
=
-
1
;
c
onst
c
har
*
fn
=
"ReadFontTbl"
;
TRACE
(
"
\n
"
);
...
...
@@ -1219,7 +1219,7 @@ static void ReadColorTbl(RTF_Info *info)
{
RTFColor
*
cp
;
int
cnum
=
0
;
c
har
*
fn
=
"ReadColorTbl"
;
c
onst
char
*
fn
=
"ReadColorTbl"
;
TRACE
(
"
\n
"
);
...
...
@@ -1261,7 +1261,7 @@ static void ReadStyleSheet(RTF_Info *info)
RTFStyle
*
sp
;
RTFStyleElt
*
sep
,
*
sepLast
;
char
buf
[
rtfBufSiz
],
*
bp
;
c
har
*
fn
=
"ReadStyleSheet"
;
c
onst
char
*
fn
=
"ReadStyleSheet"
;
TRACE
(
"
\n
"
);
...
...
@@ -1544,10 +1544,10 @@ typedef struct RTFKey RTFKey;
struct
RTFKey
{
int
rtfKMajor
;
/* major number */
int
rtfKMinor
;
/* minor number */
c
har
*
rtfKStr
;
/* symbol name */
int
rtfKHash
;
/* symbol name hash value */
int
rtfKMajor
;
/* major number */
int
rtfKMinor
;
/* minor number */
c
onst
char
*
rtfKStr
;
/* symbol name */
int
rtfKHash
;
/* symbol name hash value */
};
/*
...
...
@@ -2459,7 +2459,7 @@ RTFKey *rp;
if
(
inited
==
0
)
{
for
(
rp
=
rtfKey
;
rp
->
rtfKStr
!=
(
char
*
)
NULL
;
rp
++
)
rp
->
rtfKHash
=
Hash
(
rp
->
rtfKStr
);
rp
->
rtfKHash
=
Hash
(
(
char
*
)
rp
->
rtfKStr
);
++
inited
;
}
}
...
...
@@ -2621,7 +2621,6 @@ int RTFReadOutputMap(RTF_Info *info, char *outMap[], int reinit)
{
unsigned
int
i
;
int
stdCode
;
char
*
name
,
*
seq
;
if
(
reinit
)
{
...
...
@@ -2633,10 +2632,10 @@ int RTFReadOutputMap(RTF_Info *info, char *outMap[], int reinit)
for
(
i
=
0
;
i
<
sizeof
(
text_map
)
/
sizeof
(
char
*
);
i
+=
2
)
{
name
=
text_map
[
i
];
seq
=
text_map
[
i
+
1
];
const
char
*
name
=
text_map
[
i
];
const
char
*
seq
=
text_map
[
i
+
1
];
stdCode
=
RTFStdCharCode
(
info
,
name
);
outMap
[
stdCode
]
=
seq
;
outMap
[
stdCode
]
=
(
char
*
)
seq
;
}
return
(
1
);
...
...
@@ -2676,7 +2675,7 @@ FILE *RTFOpenLibFile (RTF_Info *info, char *file, char *mode)
*/
void
RTFMsg
(
RTF_Info
*
info
,
char
*
fmt
,
...)
void
RTFMsg
(
RTF_Info
*
info
,
c
onst
c
har
*
fmt
,
...)
{
char
buf
[
rtfBufSiz
];
...
...
@@ -2706,7 +2705,7 @@ static void DefaultPanicProc(RTF_Info *info, char *s)
void
RTFPanic
(
RTF_Info
*
info
,
char
*
fmt
,
...)
void
RTFPanic
(
RTF_Info
*
info
,
c
onst
c
har
*
fmt
,
...)
{
char
buf
[
rtfBufSiz
];
...
...
dlls/richedit/rtf.h
View file @
e84f07de
...
...
@@ -1518,7 +1518,7 @@ void RTFRead (RTF_Info *);
int
RTFGetToken
(
RTF_Info
*
);
/* writer should rarely need this */
void
RTFUngetToken
(
RTF_Info
*
);
int
RTFPeekToken
(
RTF_Info
*
);
void
RTFSetToken
(
RTF_Info
*
,
int
,
int
,
int
,
int
,
char
*
);
void
RTFSetToken
(
RTF_Info
*
,
int
,
int
,
int
,
int
,
c
onst
c
har
*
);
void
RTFSetReadHook
(
RTF_Info
*
,
RTFFuncPtr
);
RTFFuncPtr
RTFGetReadHook
(
RTF_Info
*
);
void
RTFRouteToken
(
RTF_Info
*
);
...
...
@@ -1546,14 +1546,14 @@ void RTFSetPanicProc ( RTF_Info *, RTFFuncPtr);
* stdarg.h.
*/
void
RTFMsg
(
RTF_Info
*
,
char
*
fmt
,
...);
void
RTFPanic
(
RTF_Info
*
,
char
*
fmt
,
...);
void
RTFMsg
(
RTF_Info
*
,
c
onst
c
har
*
fmt
,
...);
void
RTFPanic
(
RTF_Info
*
,
c
onst
c
har
*
fmt
,
...);
int
RTFReadOutputMap
(
RTF_Info
*
,
char
*
[],
int
);
int
RTFReadCharSetMap
(
RTF_Info
*
,
int
);
void
RTFSetCharSetMap
(
RTF_Info
*
,
char
*
,
int
);
int
RTFStdCharCode
(
RTF_Info
*
,
char
*
);
c
har
*
RTFStdCharName
(
RTF_Info
*
,
int
);
int
RTFStdCharCode
(
RTF_Info
*
,
c
onst
c
har
*
);
c
onst
char
*
RTFStdCharName
(
RTF_Info
*
,
int
);
int
RTFMapChar
(
RTF_Info
*
,
int
);
int
RTFGetCharSet
(
RTF_Info
*
);
void
RTFSetCharSet
(
RTF_Info
*
,
int
);
...
...
dlls/richedit/stdcharnames.h
View file @
e84f07de
static
char
*
stdCharName
[]
=
const
char
*
stdCharName
[]
=
{
"nothing"
,
"space"
,
...
...
dlls/richedit/text_map.h
View file @
e84f07de
...
...
@@ -11,7 +11,7 @@
* characters in ASCII range (32-127
*/
char
*
text_map
[]
=
{
c
onst
c
har
*
text_map
[]
=
{
"space"
,
" "
,
"exclam"
,
"!"
,
"quotedbl"
,
"
\"
"
,
...
...
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