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
bb2d4862
Commit
bb2d4862
authored
Oct 22, 2021
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
d3dcompiler: Use the standard va_list instead of __ms_va_list.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1303364f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
23 deletions
+23
-23
asmshader.y
dlls/d3dcompiler_43/asmshader.y
+3
-3
compiler.c
dlls/d3dcompiler_43/compiler.c
+10
-10
d3dcompiler_private.h
dlls/d3dcompiler_43/d3dcompiler_private.h
+1
-1
ppl.l
dlls/d3dcompiler_43/ppl.l
+5
-5
preproc.c
dlls/d3dcompiler_43/preproc.c
+3
-3
utils.c
dlls/d3dcompiler_43/utils.c
+1
-1
No files found.
dlls/d3dcompiler_43/asmshader.y
View file @
bb2d4862
...
...
@@ -30,11 +30,11 @@ struct asm_parser asm_ctx;
void WINAPIV asmparser_message(struct asm_parser *ctx, const char *fmt, ...)
{
__ms_
va_list args;
va_list args;
__ms_
va_start(args, fmt);
va_start(args, fmt);
compilation_message(&ctx->messages, fmt, args);
__ms_
va_end(args);
va_end(args);
}
static void asmshader_error(char const *s) {
...
...
dlls/d3dcompiler_43/compiler.c
View file @
bb2d4862
...
...
@@ -83,7 +83,7 @@ static CRITICAL_SECTION_DEBUG wpp_mutex_debug =
static
CRITICAL_SECTION
wpp_mutex
=
{
&
wpp_mutex_debug
,
-
1
,
0
,
0
,
0
,
0
};
/* Preprocessor error reporting functions */
static
void
wpp_write_message
(
const
char
*
fmt
,
__ms_
va_list
args
)
static
void
wpp_write_message
(
const
char
*
fmt
,
va_list
args
)
{
char
*
newbuffer
;
int
rc
,
newsize
;
...
...
@@ -125,37 +125,37 @@ static void wpp_write_message(const char *fmt, __ms_va_list args)
static
void
WINAPIV
PRINTF_ATTR
(
1
,
2
)
wpp_write_message_var
(
const
char
*
fmt
,
...)
{
__ms_
va_list
args
;
va_list
args
;
__ms_
va_start
(
args
,
fmt
);
va_start
(
args
,
fmt
);
wpp_write_message
(
fmt
,
args
);
__ms_
va_end
(
args
);
va_end
(
args
);
}
int
WINAPIV
ppy_error
(
const
char
*
msg
,
...)
{
__ms_
va_list
ap
;
__ms_
va_start
(
ap
,
msg
);
va_list
ap
;
va_start
(
ap
,
msg
);
wpp_write_message_var
(
"%s:%d:%d: %s: "
,
pp_status
.
input
?
pp_status
.
input
:
"'main file'"
,
pp_status
.
line_number
,
pp_status
.
char_number
,
"Error"
);
wpp_write_message
(
msg
,
ap
);
wpp_write_message_var
(
"
\n
"
);
__ms_
va_end
(
ap
);
va_end
(
ap
);
pp_status
.
state
=
1
;
return
1
;
}
int
WINAPIV
ppy_warning
(
const
char
*
msg
,
...)
{
__ms_
va_list
ap
;
__ms_
va_start
(
ap
,
msg
);
va_list
ap
;
va_start
(
ap
,
msg
);
wpp_write_message_var
(
"%s:%d:%d: %s: "
,
pp_status
.
input
?
pp_status
.
input
:
"'main file'"
,
pp_status
.
line_number
,
pp_status
.
char_number
,
"Warning"
);
wpp_write_message
(
msg
,
ap
);
wpp_write_message_var
(
"
\n
"
);
__ms_
va_end
(
ap
);
va_end
(
ap
);
return
0
;
}
...
...
dlls/d3dcompiler_43/d3dcompiler_private.h
View file @
bb2d4862
...
...
@@ -269,7 +269,7 @@ struct bwriter_shader *parse_asm_shader(char **messages) DECLSPEC_HIDDEN;
#define PRINTF_ATTR(fmt,args)
#endif
void
compilation_message
(
struct
compilation_messages
*
msg
,
const
char
*
fmt
,
__ms_
va_list
args
)
DECLSPEC_HIDDEN
;
void
compilation_message
(
struct
compilation_messages
*
msg
,
const
char
*
fmt
,
va_list
args
)
DECLSPEC_HIDDEN
;
void
WINAPIV
asmparser_message
(
struct
asm_parser
*
ctx
,
const
char
*
fmt
,
...)
PRINTF_ATTR
(
2
,
3
)
DECLSPEC_HIDDEN
;
static
inline
void
set_parse_status
(
enum
parse_status
*
current
,
enum
parse_status
update
)
{
...
...
dlls/d3dcompiler_43/ppl.l
View file @
bb2d4862
...
...
@@ -287,7 +287,7 @@ includelogicentry_t *pp_includelogiclist = NULL;
void WINAPIV pp_writestring(const char *format, ...)
{
__ms_
va_list valist;
va_list valist;
int len;
static char *buffer;
static int buffercapacity;
...
...
@@ -301,10 +301,10 @@ void WINAPIV pp_writestring(const char *format, ...)
buffercapacity = BUFFERINITIALCAPACITY;
}
__ms_
va_start(valist, format);
va_start(valist, format);
len = vsnprintf(buffer, buffercapacity,
format, valist);
__ms_
va_end(valist);
va_end(valist);
/* If the string is longer than buffersize, vsnprintf returns
* the string length with glibc >= 2.1, -1 with glibc < 2.1 */
while(len > buffercapacity || len < 0)
...
...
@@ -318,10 +318,10 @@ void WINAPIV pp_writestring(const char *format, ...)
if(new_buffer == NULL)
return;
buffer = new_buffer;
__ms_
va_start(valist, format);
va_start(valist, format);
len = vsnprintf(buffer, buffercapacity,
format, valist);
__ms_
va_end(valist);
va_end(valist);
}
wpp_write(buffer, len);
...
...
dlls/d3dcompiler_43/preproc.c
View file @
bb2d4862
...
...
@@ -437,11 +437,11 @@ int pp_get_if_depth(void)
void
WINAPIV
pp_internal_error
(
const
char
*
file
,
int
line
,
const
char
*
s
,
...)
{
__ms_
va_list
ap
;
__ms_
va_start
(
ap
,
s
);
va_list
ap
;
va_start
(
ap
,
s
);
fprintf
(
stderr
,
"Internal error (please report) %s %d: "
,
file
,
line
);
vfprintf
(
stderr
,
s
,
ap
);
fprintf
(
stderr
,
"
\n
"
);
__ms_
va_end
(
ap
);
va_end
(
ap
);
exit
(
3
);
}
dlls/d3dcompiler_43/utils.c
View file @
bb2d4862
...
...
@@ -716,7 +716,7 @@ HRESULT dxbc_write_blob(struct dxbc *dxbc, ID3DBlob **blob)
return
S_OK
;
}
void
compilation_message
(
struct
compilation_messages
*
msg
,
const
char
*
fmt
,
__ms_
va_list
args
)
void
compilation_message
(
struct
compilation_messages
*
msg
,
const
char
*
fmt
,
va_list
args
)
{
char
*
buffer
;
int
rc
,
size
;
...
...
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