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
edc858c2
Commit
edc858c2
authored
Feb 09, 1999
by
Zygo Blaxell
Committed by
Alexandre Julliard
Feb 09, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wine_openpty is not properly declared (either missing or mismatched
declarations) in both places where it is used.
parent
1084b2cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
xterm.c
console/xterm.c
+1
-1
console.c
win32/console.c
+5
-0
No files found.
console/xterm.c
View file @
edc858c2
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
#define ESC '\x1b'
#define ESC '\x1b'
static
BOOL32
wine_create_console
(
FILE
**
master
,
FILE
**
slave
,
int
*
pid
);
static
BOOL32
wine_create_console
(
FILE
**
master
,
FILE
**
slave
,
int
*
pid
);
static
FILE
*
wine_openpty
(
FILE
**
master
,
FILE
*
*
slave
,
char
*
name
,
FILE
*
wine_openpty
(
int
*
master
,
int
*
slave
,
char
*
name
,
struct
termios
*
term
,
struct
winsize
*
winsize
);
struct
termios
*
term
,
struct
winsize
*
winsize
);
/* The console -- I chose to keep the master and slave
/* The console -- I chose to keep the master and slave
...
...
win32/console.c
View file @
edc858c2
...
@@ -59,6 +59,11 @@ const K32OBJ_OPS CONSOLE_Ops =
...
@@ -59,6 +59,11 @@ const K32OBJ_OPS CONSOLE_Ops =
CONSOLE_Destroy
/* destroy */
CONSOLE_Destroy
/* destroy */
};
};
/* FIXME: Should be in an internal header file. OK, so which one?
Used by CONSOLE_makecomplex. */
FILE
*
wine_openpty
(
int
*
master
,
int
*
slave
,
char
*
name
,
struct
termios
*
term
,
struct
winsize
*
winsize
);
/***********************************************************************
/***********************************************************************
* CONSOLE_Destroy
* CONSOLE_Destroy
*/
*/
...
...
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