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
00b86a9b
Commit
00b86a9b
authored
Dec 16, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
Dec 16, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some issues found by winapi_check.
parent
fa29de7c
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
8 deletions
+16
-8
devinst.c
dlls/setupapi/devinst.c
+2
-1
setupx_main.c
dlls/setupapi/setupx_main.c
+11
-6
shellpath.c
dlls/shell32/shellpath.c
+2
-0
environ.c
memory/environ.c
+1
-1
No files found.
dlls/setupapi/devinst.c
View file @
00b86a9b
...
...
@@ -10,7 +10,8 @@
DEFAULT_DEBUG_CHANNEL
(
setupapi
);
/*
/***********************************************************************
* DiGetClassDevs (SETUPX.304)
* Return a list of installed system devices.
* Uses HKLM\\ENUM to list devices.
*/
...
...
dlls/setupapi/setupx_main.c
View file @
00b86a9b
...
...
@@ -575,7 +575,7 @@ void SETUPX_CreateStandardLDDs(void)
if
(
hKey
)
RegCloseKey
(
hKey
);
}
/*
/*
**********************************************************************
* CtlDelLdd (SETUPX.37)
*
* RETURN
...
...
@@ -616,13 +616,16 @@ RETERR16 SETUPX_DelLdd(LOGDISKID16 ldid)
return
OK
;
}
/***********************************************************************
* CtlDelLdd (SETUPX.37)
*/
RETERR16
WINAPI
CtlDelLdd16
(
LOGDISKID16
ldid
)
{
FIXME
(
"(%d); - please report to a.mohr@mailto.de !!!
\n
"
,
ldid
);
return
SETUPX_DelLdd
(
ldid
);
}
/*
/*
**********************************************************************
* CtlFindLdd (SETUPX.35)
*
* doesn't check pldd ptr validity: crash (W98SE)
...
...
@@ -661,7 +664,7 @@ RETERR16 WINAPI CtlFindLdd16(LPLOGDISKDESC pldd)
return
1
;
/* what is this ?? */
}
/*
/*
**********************************************************************
* CtlSetLdd (SETUPX.33)
*
* Set an LDD entry.
...
...
@@ -733,7 +736,7 @@ RETERR16 WINAPI CtlSetLdd16(LPLOGDISKDESC pldd)
}
/*
/*
**********************************************************************
* CtlAddLdd (SETUPX.36)
*
* doesn't check pldd ptr validity: crash (W98SE)
...
...
@@ -746,7 +749,7 @@ RETERR16 WINAPI CtlAddLdd16(LPLOGDISKDESC pldd)
return
CtlSetLdd16
(
pldd
);
}
/*
/*
**********************************************************************
* CtlGetLdd (SETUPX.34)
*
* doesn't check pldd ptr validity: crash (W98SE)
...
...
@@ -782,6 +785,8 @@ static RETERR16 SETUPX_GetLdd(LPLOGDISKDESC pldd)
return
OK
;
}
/**********************************************************************/
RETERR16
WINAPI
CtlGetLdd16
(
LPLOGDISKDESC
pldd
)
{
FIXME
(
"(%p); - please report to a.mohr@mailto.de !!!
\n
"
,
pldd
);
...
...
@@ -1054,7 +1059,7 @@ RETERR16 WINAPI VcpOpen16(VIFPROC vifproc, LPARAM lparamMsgRef)
}
/***********************************************************************
*
v
cpClose
*
V
cpClose
*
* Is fl related to VCPDISKINFO.fl ?
*/
...
...
dlls/shell32/shellpath.c
View file @
00b86a9b
...
...
@@ -910,6 +910,8 @@ static const CSIDL_DATA CSIDL_Data[] =
#undef HKCU
#undef HKLM
/**********************************************************************/
BOOL
WINAPI
SHGetSpecialFolderPathA
(
HWND
hwndOwner
,
LPSTR
szPath
,
...
...
memory/environ.c
View file @
00b86a9b
...
...
@@ -485,7 +485,7 @@ DWORD WINAPI ExpandEnvironmentStringsW( LPCWSTR src, LPWSTR dst, DWORD len )
/***********************************************************************
* GetDOSEnvironment (KERNEL.131)
* GetDOSEnvironment
16
(KERNEL.131)
*/
SEGPTR
WINAPI
GetDOSEnvironment16
(
void
)
{
...
...
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