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
72d41524
Commit
72d41524
authored
Sep 10, 2001
by
Patrik Stridvall
Committed by
Alexandre Julliard
Sep 10, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Documentation fixes.
parent
d171a552
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
6 deletions
+22
-6
mciwnd.c
dlls/msvideo/mciwnd.c
+4
-4
variant.c
dlls/oleaut32/variant.c
+13
-1
shellstring.c
dlls/shell32/shellstring.c
+5
-1
No files found.
dlls/msvideo/mciwnd.c
View file @
72d41524
...
...
@@ -34,7 +34,7 @@ static LRESULT WINAPI MCIWndProc(HWND hWnd, UINT wMsg, WPARAM lParam1, LPARAM lP
#define CTL_TRACKBAR 0x3202
/***********************************************************************
* MCIWndRegisterClass [MSVFW.@]
* MCIWndRegisterClass [MSVFW
32
.@]
*/
BOOL
WINAPI
MCIWndRegisterClass
(
HINSTANCE
hInst
)
{
...
...
@@ -59,8 +59,8 @@ BOOL WINAPI MCIWndRegisterClass(HINSTANCE hInst)
}
/***********************************************************************
* MCIWndCreate [MSVFW.@]
* MCIWndCreateA [MSVFW.@]
* MCIWndCreate [MSVFW
32
.@]
* MCIWndCreateA [MSVFW
32
.@]
*/
HWND
VFWAPIV
MCIWndCreateA
(
HWND
hwndParent
,
HINSTANCE
hInstance
,
DWORD
dwStyle
,
LPCSTR
szFile
)
...
...
@@ -94,7 +94,7 @@ HWND VFWAPIV MCIWndCreateA(HWND hwndParent, HINSTANCE hInstance,
}
/***********************************************************************
* MCIWndCreateW [MSVFW.@]
* MCIWndCreateW [MSVFW
32
.@]
*/
HWND
VFWAPIV
MCIWndCreateW
(
HWND
hwndParent
,
HINSTANCE
hInstance
,
DWORD
dwStyle
,
LPCWSTR
szFile
)
...
...
dlls/oleaut32/variant.c
View file @
72d41524
...
...
@@ -4404,7 +4404,7 @@ HRESULT WINAPI VarNumFromParseNum(NUMPARSE * pnumprs, BYTE * rgbDig,
/**********************************************************************
* VariantTimeToDosDateTime [OLEAUT32.
??
]
* VariantTimeToDosDateTime [OLEAUT32.
13
]
* Convert variant representation of time to the date and time representation
* stored in dos.
*/
...
...
@@ -4430,6 +4430,9 @@ INT WINAPI VariantTimeToDosDateTime(DATE pvtime, USHORT *wDosDate, USHORT *wDosT
}
/***********************************************************************
* SystemTimeToVariantTime [OLEAUT32.184]
*/
HRESULT
WINAPI
SystemTimeToVariantTime
(
LPSYSTEMTIME
lpSystemTime
,
double
*
pvtime
)
{
static
const
BYTE
Days_Per_Month
[]
=
{
0
,
31
,
28
,
31
,
30
,
31
,
30
,
31
,
31
,
30
,
31
,
30
,
31
};
...
...
@@ -4478,6 +4481,9 @@ HRESULT WINAPI SystemTimeToVariantTime( LPSYSTEMTIME lpSystemTime, double *pvti
return
0
;
}
/***********************************************************************
* VariantTimeToSystemTime [OLEAUT32.185]
*/
HRESULT
WINAPI
VariantTimeToSystemTime
(
double
vtime
,
LPSYSTEMTIME
lpSystemTime
)
{
double
t
=
0
,
timeofday
=
0
;
...
...
@@ -4593,6 +4599,9 @@ HRESULT WINAPI VariantTimeToSystemTime( double vtime, LPSYSTEMTIME lpSystemTime
return
1
;
}
/***********************************************************************
* VarUdateFromDate [OLEAUT32.331]
*/
HRESULT
WINAPI
VarUdateFromDate
(
DATE
datein
,
ULONG
dwFlags
,
UDATE
*
pudateout
)
{
HRESULT
i
=
0
;
...
...
@@ -4625,6 +4634,9 @@ HRESULT WINAPI VarUdateFromDate( DATE datein, ULONG dwFlags, UDATE *pudateout)
return
i
;
}
/***********************************************************************
* VarDateFromUdate [OLEAUT32.330]
*/
HRESULT
WINAPI
VarDateFromUdate
(
UDATE
*
pudateout
,
ULONG
dwFlags
,
DATE
*
datein
)
{
...
...
dlls/shell32/shellstring.c
View file @
72d41524
...
...
@@ -19,7 +19,7 @@ DEFAULT_DEBUG_CHANNEL(shell);
/************************* STRRET functions ****************************/
/*************************************************************************
* StrRetToStrN
[SHELL32.96]
* StrRetToStrN [SHELL32.96]
*
* converts a STRRET to a normal string
*
...
...
@@ -56,6 +56,8 @@ HRESULT WINAPI StrRetToStrNA (LPVOID dest, DWORD len, LPSTRRET src, const ITEMID
return
S_OK
;
}
/*************************************************************************/
HRESULT
WINAPI
StrRetToStrNW
(
LPVOID
dest1
,
DWORD
len
,
LPSTRRET
src
,
const
ITEMIDLIST
*
pidl
)
{
LPWSTR
dest
=
(
LPWSTR
)
dest1
;
...
...
@@ -92,6 +94,8 @@ HRESULT WINAPI StrRetToStrNW (LPVOID dest1, DWORD len, LPSTRRET src, const ITEMI
return
S_OK
;
}
/*************************************************************************/
HRESULT
WINAPI
StrRetToStrNAW
(
LPVOID
dest
,
DWORD
len
,
LPSTRRET
src
,
const
ITEMIDLIST
*
pidl
)
{
if
(
SHELL_OsIsUnicode
())
...
...
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