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
4162abba
Commit
4162abba
authored
Nov 18, 2002
by
Vincent Béron
Committed by
Alexandre Julliard
Nov 18, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of the vararg and generic stuff.
parent
1eb106b9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
127 deletions
+1
-127
reader.c
dlls/richedit/reader.c
+1
-117
rtf.h
dlls/richedit/rtf.h
+0
-10
No files found.
dlls/richedit/reader.c
View file @
4162abba
...
...
@@ -44,24 +44,12 @@
* any purpose whatsoever.
*/
# ifndef STRING_H
# define STRING_H <string.h>
# endif
# include <stdio.h>
# include <ctype.h>
# include STRING_H
# ifdef STDARG
# include <string.h>
# include <stdarg.h>
# else
# ifdef VARARGS
# include <varargs.h>
# endif
/* VARARGS */
# endif
/* STDARG */
# define rtfInternal
# include "rtf.h"
# undef rtfInternal
/*
* include hard coded charsets
...
...
@@ -2786,12 +2774,6 @@ void RTFSetMsgProc(RTFFuncPtr proc)
}
# ifdef STDARG
/*
* This version is for systems with stdarg
*/
void
RTFMsg
(
char
*
fmt
,
...)
{
char
buf
[
rtfBufSiz
];
...
...
@@ -2803,45 +2785,6 @@ char buf[rtfBufSiz];
(
*
msgProc
)
(
buf
);
}
# else
/* !STDARG */
# ifdef VARARGS
/*
* This version is for systems that have varargs.
*/
void
RTFMsg
(
va_dcl
va_alist
)
{
va_list
args
;
char
*
fmt
;
char
buf
[
rtfBufSiz
];
va_start
(
args
);
fmt
=
va_arg
(
args
,
char
*
);
vsprintf
(
buf
,
fmt
,
args
);
va_end
(
args
);
(
*
msgProc
)
(
buf
);
}
# else
/* !VARARGS */
/*
* This version is for systems that don't have varargs.
*/
void
RTFMsg
(
char
*
fmt
,
char
*
a1
,
char
*
a2
,
char
*
a3
,
char
*
a4
,
char
*
a5
,
char
*
a6
,
char
*
a7
,
char
*
a8
,
char
*
a9
)
{
char
buf
[
rtfBufSiz
];
sprintf
(
buf
,
fmt
,
a1
,
a2
,
a3
,
a4
,
a5
,
a6
,
a7
,
a8
,
a9
);
(
*
msgProc
)
(
buf
);
}
# endif
/* !VARARGS */
# endif
/* !STDARG */
/* ---------------------------------------------------------------------- */
...
...
@@ -2869,12 +2812,6 @@ void RTFSetPanicProc(RTFFuncPtr proc)
}
# ifdef STDARG
/*
* This version is for systems with stdarg
*/
void
RTFPanic
(
char
*
fmt
,
...)
{
char
buf
[
rtfBufSiz
];
...
...
@@ -2892,56 +2829,3 @@ char buf[rtfBufSiz];
}
(
*
panicProc
)
(
buf
);
}
# else
/* !STDARG */
# ifdef VARARGS
/*
* This version is for systems that have varargs.
*/
void
RTFPanic
(
va_dcl
va_alist
)
{
va_list
args
;
char
*
fmt
;
char
buf
[
rtfBufSiz
];
va_start
(
args
);
fmt
=
va_arg
(
args
,
char
*
);
vsprintf
(
buf
,
fmt
,
args
);
va_end
(
args
);
(
void
)
strcat
(
buf
,
"
\n
"
);
if
(
prevChar
!=
EOF
&&
rtfTextBuf
!=
(
char
*
)
NULL
)
{
sprintf
(
buf
+
strlen
(
buf
),
"Last token read was
\"
%s
\"
near line %ld, position %d.
\n
"
,
rtfTextBuf
,
rtfLineNum
,
rtfLinePos
);
}
(
*
panicProc
)
(
buf
);
}
# else
/* !VARARGS */
/*
* This version is for systems that don't have varargs.
*/
void
RTFPanic
(
char
*
fmt
,
char
*
a1
,
char
*
a2
,
char
*
a3
,
char
*
a4
,
char
*
a5
,
char
*
a6
,
char
*
a7
,
char
*
a8
,
char
*
a9
)
{
char
buf
[
rtfBufSiz
];
sprintf
(
buf
,
fmt
,
a1
,
a2
,
a3
,
a4
,
a5
,
a6
,
a7
,
a8
,
a9
);
(
void
)
strcat
(
buf
,
"
\n
"
);
if
(
prevChar
!=
EOF
&&
rtfTextBuf
!=
(
char
*
)
NULL
)
{
sprintf
(
buf
+
strlen
(
buf
),
"Last token read was
\"
%s
\"
near line %ld, position %d.
\n
"
,
rtfTextBuf
,
rtfLineNum
,
rtfLinePos
);
}
(
*
panicProc
)
(
buf
);
}
# endif
/* !VARARGS */
# endif
/* !STDARG */
dlls/richedit/rtf.h
View file @
4162abba
...
...
@@ -1438,18 +1438,8 @@ void RTFSetPanicProc ();
* stdarg.h.
*/
# ifndef rtfInternal
void
RTFMsg
();
void
RTFPanic
();
# else
# ifdef STDARG
void
RTFMsg
(
char
*
fmt
,
...);
void
RTFPanic
(
char
*
fmt
,
...);
# else
void
RTFMsg
();
void
RTFPanic
();
# endif
/* STDARG */
# endif
/* rtfInternal */
int
RTFReadOutputMap
();
int
RTFReadCharSetMap
();
...
...
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