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
a20f7f46
Commit
a20f7f46
authored
Aug 10, 2006
by
Dan Hipschman
Committed by
Alexandre Julliard
Aug 11, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
widl: Fix incorrect version number in generated code.
parent
a17d253c
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
5 deletions
+3
-5
client.c
tools/widl/client.c
+1
-1
proxy.c
tools/widl/proxy.c
+1
-1
server.c
tools/widl/server.c
+1
-1
widl.h
tools/widl/widl.h
+0
-2
No files found.
tools/widl/client.c
View file @
a20f7f46
...
@@ -451,7 +451,7 @@ static void init_client(void)
...
@@ -451,7 +451,7 @@ static void init_client(void)
if
(
!
(
client
=
fopen
(
client_name
,
"w"
)))
if
(
!
(
client
=
fopen
(
client_name
,
"w"
)))
error
(
"Could not open %s for output
\n
"
,
client_name
);
error
(
"Could not open %s for output
\n
"
,
client_name
);
print_client
(
"/*** Autogenerated by WIDL %s from %s - Do not edit ***/
\n
"
,
WIDL_FULL
VERSION
,
input_name
);
print_client
(
"/*** Autogenerated by WIDL %s from %s - Do not edit ***/
\n
"
,
PACKAGE_
VERSION
,
input_name
);
print_client
(
"#include <string.h>
\n
"
);
print_client
(
"#include <string.h>
\n
"
);
print_client
(
"#ifdef _ALPHA_
\n
"
);
print_client
(
"#ifdef _ALPHA_
\n
"
);
print_client
(
"#include <stdarg.h>
\n
"
);
print_client
(
"#include <stdarg.h>
\n
"
);
...
...
tools/widl/proxy.c
View file @
a20f7f46
...
@@ -147,7 +147,7 @@ static void init_proxy(void)
...
@@ -147,7 +147,7 @@ static void init_proxy(void)
if
(
proxy
)
return
;
if
(
proxy
)
return
;
if
(
!
(
proxy
=
fopen
(
proxy_name
,
"w"
)))
if
(
!
(
proxy
=
fopen
(
proxy_name
,
"w"
)))
error
(
"Could not open %s for output
\n
"
,
proxy_name
);
error
(
"Could not open %s for output
\n
"
,
proxy_name
);
print_proxy
(
"/*** Autogenerated by WIDL %s
- Do not edit ***/
\n
"
,
WIDL_FULLVERSION
);
print_proxy
(
"/*** Autogenerated by WIDL %s
from %s - Do not edit ***/
\n
"
,
PACKAGE_VERSION
,
input_name
);
print_proxy
(
"
\n
"
);
print_proxy
(
"
\n
"
);
print_proxy
(
"#ifndef __REDQ_RPCPROXY_H_VERSION__
\n
"
);
print_proxy
(
"#ifndef __REDQ_RPCPROXY_H_VERSION__
\n
"
);
print_proxy
(
"#define __REQUIRED_RPCPROXY_H_VERSION__ 440
\n
"
);
print_proxy
(
"#define __REQUIRED_RPCPROXY_H_VERSION__ 440
\n
"
);
...
...
tools/widl/server.c
View file @
a20f7f46
...
@@ -587,7 +587,7 @@ static void init_server(void)
...
@@ -587,7 +587,7 @@ static void init_server(void)
if
(
!
(
server
=
fopen
(
server_name
,
"w"
)))
if
(
!
(
server
=
fopen
(
server_name
,
"w"
)))
error
(
"Could not open %s for output
\n
"
,
server_name
);
error
(
"Could not open %s for output
\n
"
,
server_name
);
print_server
(
"/*** Autogenerated by WIDL %s from %s - Do not edit ***/
\n
"
,
WIDL_FULL
VERSION
,
input_name
);
print_server
(
"/*** Autogenerated by WIDL %s from %s - Do not edit ***/
\n
"
,
PACKAGE_
VERSION
,
input_name
);
print_server
(
"#include <string.h>
\n
"
);
print_server
(
"#include <string.h>
\n
"
);
fprintf
(
server
,
"
\n
"
);
fprintf
(
server
,
"
\n
"
);
print_server
(
"#include
\"
%s
\"\n
"
,
header_name
);
print_server
(
"#include
\"
%s
\"\n
"
,
header_name
);
...
...
tools/widl/widl.h
View file @
a20f7f46
...
@@ -25,8 +25,6 @@
...
@@ -25,8 +25,6 @@
#include <time.h>
#include <time.h>
#define WIDL_FULLVERSION "0.1"
extern
int
debuglevel
;
extern
int
debuglevel
;
#define DEBUGLEVEL_NONE 0x0000
#define DEBUGLEVEL_NONE 0x0000
#define DEBUGLEVEL_CHAT 0x0001
#define DEBUGLEVEL_CHAT 0x0001
...
...
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