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
90d089b5
Commit
90d089b5
authored
Dec 12, 1999
by
Huw D M Davies
Committed by
Alexandre Julliard
Dec 12, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed arg types of FIXMEs.
parent
e6c6390c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
11 deletions
+11
-11
tape.c
files/tape.c
+11
-11
No files found.
files/tape.c
View file @
90d089b5
...
...
@@ -22,7 +22,7 @@ BOOL WINAPI BackupRead( HANDLE hFile, LPBYTE lpBuffer, DWORD nNumberOfBytesToRea
LPDWORD
lpNumberOfBytesRead
,
BOOL
bAbort
,
BOOL
bProcessSecurity
,
LPVOID
*
lpContext
)
{
FIXME
(
"(%04x, %p, %d, %p, %d, %d, %p) stub!
\n
"
,
hFile
,
lpBuffer
,
FIXME
(
"(%04x, %p, %
l
d, %p, %d, %d, %p) stub!
\n
"
,
hFile
,
lpBuffer
,
nNumberOfBytesToRead
,
lpNumberOfBytesRead
,
bAbort
,
bProcessSecurity
,
lpContext
);
...
...
@@ -39,7 +39,7 @@ BOOL WINAPI BackupSeek( HANDLE hFile, DWORD dwLowBytesToSeek, DWORD dwHighBytesT
LPDWORD
lpdwLowByteSeeked
,
LPDWORD
lpdwHighByteSeeked
,
LPVOID
*
lpContext
)
{
FIXME
(
"(%04x, %
d, %
d, %p, %p, %p) stub!
\n
"
,
hFile
,
dwLowBytesToSeek
,
FIXME
(
"(%04x, %
ld, %l
d, %p, %p, %p) stub!
\n
"
,
hFile
,
dwLowBytesToSeek
,
dwHighBytesToSeek
,
lpdwLowByteSeeked
,
lpdwHighByteSeeked
,
lpContext
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
...
...
@@ -55,7 +55,7 @@ BOOL WINAPI BackupWrite( HANDLE hFile, LPBYTE lpBuffer, DWORD nNumberOfBytesToWr
LPDWORD
lpNumberOfBytesWritten
,
BOOL
bAbort
,
BOOL
bProcessSecurity
,
LPVOID
*
lpContext
)
{
FIXME
(
"(%04x, %p, %d, %p, %d, %d, %p) stub!
\n
"
,
hFile
,
lpBuffer
,
FIXME
(
"(%04x, %p, %
l
d, %p, %d, %d, %p) stub!
\n
"
,
hFile
,
lpBuffer
,
nNumberOfBytesToWrite
,
lpNumberOfBytesWritten
,
bAbort
,
bProcessSecurity
,
lpContext
);
...
...
@@ -71,7 +71,7 @@ BOOL WINAPI BackupWrite( HANDLE hFile, LPBYTE lpBuffer, DWORD nNumberOfBytesToWr
DWORD
WINAPI
CreateTapePartition
(
HANDLE
hDevice
,
DWORD
dwPartitionMethod
,
DWORD
dwCount
,
DWORD
dwSize
)
{
FIXME
(
"(%04x, %
d, %d, %
d) stub!
\n
"
,
hDevice
,
dwPartitionMethod
,
dwCount
,
FIXME
(
"(%04x, %
ld, %ld, %l
d) stub!
\n
"
,
hDevice
,
dwPartitionMethod
,
dwCount
,
dwSize
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
...
...
@@ -85,7 +85,7 @@ DWORD WINAPI CreateTapePartition( HANDLE hDevice, DWORD dwPartitionMethod,
*/
DWORD
WINAPI
EraseTape
(
HANDLE
hDevice
,
DWORD
dwEraseType
,
BOOL
bImmediate
)
{
FIXME
(
"(%04x, %d, %d) stub!
\n
"
,
hDevice
,
dwEraseType
,
bImmediate
);
FIXME
(
"(%04x, %
l
d, %d) stub!
\n
"
,
hDevice
,
dwEraseType
,
bImmediate
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
...
...
@@ -99,7 +99,7 @@ DWORD WINAPI EraseTape( HANDLE hDevice, DWORD dwEraseType, BOOL bImmediate )
DWORD
WINAPI
GetTapeParameters
(
HANDLE
hDevice
,
DWORD
dwOperation
,
LPDWORD
lpdwSize
,
LPVOID
lpTapeInformation
)
{
FIXME
(
"(%04x, %d, %p, %p) stub!
\n
"
,
hDevice
,
dwOperation
,
lpdwSize
,
FIXME
(
"(%04x, %
l
d, %p, %p) stub!
\n
"
,
hDevice
,
dwOperation
,
lpdwSize
,
lpTapeInformation
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
...
...
@@ -115,7 +115,7 @@ DWORD WINAPI GetTapePosition( HANDLE hDevice, DWORD dwPositionType,
LPDWORD
lpdwPartition
,
LPDWORD
lpdwOffsetLow
,
LPDWORD
lpdwOffsetHigh
)
{
FIXME
(
"(%04x, %d, %p, %p, %p) stub!
\n
"
,
hDevice
,
dwPositionType
,
FIXME
(
"(%04x, %
l
d, %p, %p, %p) stub!
\n
"
,
hDevice
,
dwPositionType
,
lpdwPartition
,
lpdwOffsetLow
,
lpdwOffsetHigh
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
...
...
@@ -142,7 +142,7 @@ DWORD WINAPI GetTapeStatus( HANDLE hDevice )
*/
DWORD
WINAPI
PrepareTape
(
HANDLE
hDevice
,
DWORD
dwOperation
,
BOOL
bImmediate
)
{
FIXME
(
"(%04x, %d, %d) stub!
\n
"
,
hDevice
,
dwOperation
,
bImmediate
);
FIXME
(
"(%04x, %
l
d, %d) stub!
\n
"
,
hDevice
,
dwOperation
,
bImmediate
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
...
...
@@ -156,7 +156,7 @@ DWORD WINAPI PrepareTape( HANDLE hDevice, DWORD dwOperation, BOOL bImmediate )
DWORD
WINAPI
SetTapeParameters
(
HANDLE
hDevice
,
DWORD
dwOperation
,
LPVOID
lpTapeInformation
)
{
FIXME
(
"(%04x, %d, %p) stub!
\n
"
,
hDevice
,
dwOperation
,
lpTapeInformation
);
FIXME
(
"(%04x, %
l
d, %p) stub!
\n
"
,
hDevice
,
dwOperation
,
lpTapeInformation
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
...
...
@@ -171,7 +171,7 @@ DWORD WINAPI SetTapePosition( HANDLE hDevice, DWORD dwPositionMethod, DWORD
dwPartition
,
DWORD
dwOffsetLow
,
DWORD
dwOffsetHigh
,
BOOL
bImmediate
)
{
FIXME
(
"(%04x, %
d, %d, %d, %
d, %d) stub!
\n
"
,
hDevice
,
dwPositionMethod
,
FIXME
(
"(%04x, %
ld, %ld, %ld, %l
d, %d) stub!
\n
"
,
hDevice
,
dwPositionMethod
,
dwPartition
,
dwOffsetLow
,
dwOffsetHigh
,
bImmediate
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
...
...
@@ -186,7 +186,7 @@ DWORD WINAPI SetTapePosition( HANDLE hDevice, DWORD dwPositionMethod, DWORD
DWORD
WINAPI
WriteTapemark
(
HANDLE
hDevice
,
DWORD
dwTapemarkType
,
DWORD
dwTapemarkCount
,
BOOL
bImmediate
)
{
FIXME
(
"(%04x, %
d, %
d, %d) stub!
\n
"
,
hDevice
,
dwTapemarkType
,
FIXME
(
"(%04x, %
ld, %l
d, %d) stub!
\n
"
,
hDevice
,
dwTapemarkType
,
dwTapemarkCount
,
bImmediate
);
SetLastError
(
ERROR_NOT_SUPPORTED
);
...
...
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