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
8121e941
Commit
8121e941
authored
Jan 18, 2002
by
Bang Jun-Young
Committed by
Alexandre Julliard
Jan 18, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix NetBSD compile errors; CDIOCREADAUDIO is not available on NetBSD.
parent
ea881d25
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
4 deletions
+17
-4
cdrom.c
dlls/ntdll/cdrom.c
+17
-4
No files found.
dlls/ntdll/cdrom.c
View file @
8121e941
...
...
@@ -765,9 +765,7 @@ static DWORD CDROM_RawRead(int dev, const RAW_READ_INFO* raw, void* buffer, DWOR
break
;
}
}
*
sz
=
sectSize
*
raw
->
SectorCount
;
ret
=
CDROM_GetStatusCode
(
io
);
#elif defined(__FreeBSD__) || defined(__NetBSD__)
#elif defined(__FreeBSD__)
{
struct
ioc_read_audio
ira
;
...
...
@@ -791,9 +789,24 @@ static DWORD CDROM_RawRead(int dev, const RAW_READ_INFO* raw, void* buffer, DWOR
break
;
}
}
#elif defined(__NetBSD__)
{
switch
(
raw
->
TrackMode
)
{
case
YellowMode2
:
FIXME
(
"YellowMode2: NIY
\n
"
);
return
ret
;
case
XAForm2
:
FIXME
(
"XAForm2: NIY
\n
"
);
return
ret
;
case
CDDA
:
FIXME
(
"CDDA: NIY
\n
"
);
return
ret
;
}
}
#endif
*
sz
=
sectSize
*
raw
->
SectorCount
;
ret
=
CDROM_GetStatusCode
(
io
);
#endif
return
ret
;
}
...
...
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