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
bf8943c6
Commit
bf8943c6
authored
Oct 02, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Oct 02, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
1051c3fe
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
9 deletions
+15
-9
time.c
dlls/kernel/time.c
+1
-0
winaspi32.c
dlls/winaspi/winaspi32.c
+11
-3
wnaspi32.h
include/wnaspi32.h
+3
-6
No files found.
dlls/kernel/time.c
View file @
bf8943c6
...
...
@@ -9,6 +9,7 @@
#include <sys/time.h>
#include <sys/times.h>
#include "file.h"
#include "ntddk.h"
#include "winerror.h"
#include "debugtools.h"
...
...
dlls/winaspi/winaspi32.c
View file @
bf8943c6
...
...
@@ -450,7 +450,7 @@ error_exit:
* HIBYTE of LOWORD: status (SS_COMP or SS_FAILED_INIT)
* LOBYTE of LOWORD: # of host adapters.
*/
DWORD
WINAPI
GetASPI32SupportInfo
(
)
DWORD
__cdecl
GetASPI32SupportInfo
(
void
)
{
return
((
SS_COMP
<<
8
)
|
ASPI_GetNumControllers
());
}
...
...
@@ -536,8 +536,7 @@ DWORD __cdecl SendASPI32Command(LPSRB lpSRB)
/***********************************************************************
* GetASPI32DLLVersion (WNASPI32.3)
*/
DWORD
WINAPI
GetASPI32DLLVersion
()
DWORD
__cdecl
GetASPI32DLLVersion
(
void
)
{
#ifdef linux
TRACE
(
"Returning version 1
\n
"
);
...
...
@@ -548,18 +547,27 @@ DWORD WINAPI GetASPI32DLLVersion()
#endif
}
/***********************************************************************
* GetASPI32Buffer (WNASPI32.@)
*/
BOOL
__cdecl
GetASPI32Buffer
(
/*PASPI32BUFF*/
LPVOID
pab
)
{
FIXME
(
"(%p), stub !
\n
"
,
pab
);
return
TRUE
;
}
/***********************************************************************
* FreeASPI32Buffer (WNASPI32.@)
*/
BOOL
__cdecl
FreeASPI32Buffer
(
/*PASPI32BUFF*/
LPVOID
pab
)
{
FIXME
(
"(%p), stub !
\n
"
,
pab
);
return
TRUE
;
}
/***********************************************************************
* TranslateASPI32Address (WNASPI32.@)
*/
BOOL
__cdecl
TranslateASPI32Address
(
LPDWORD
pdwPath
,
LPDWORD
pdwDEVNODE
)
{
FIXME
(
"(%p, %p), stub !
\n
"
,
pdwPath
,
pdwDEVNODE
);
...
...
include/wnaspi32.h
View file @
bf8943c6
...
...
@@ -203,12 +203,9 @@ typedef union tagSRB32 {
#include "poppack.h"
/* Prototypes */
extern
DWORD
__cdecl
SendASPI32Command
(
PSRB
);
extern
DWORD
WINAPI
GetASPI32SupportInfo
(
void
);
extern
DWORD
WINAPI
GetASPI32DLLVersion
(
void
);
extern
DWORD
__cdecl
SendASPI32Command
(
PSRB
);
extern
DWORD
__cdecl
GetASPI32SupportInfo
(
void
);
extern
DWORD
__cdecl
GetASPI32DLLVersion
(
void
);
#ifdef __cplusplus
}
...
...
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