Commit 72d41524 authored by Patrik Stridvall's avatar Patrik Stridvall Committed by Alexandre Julliard

Documentation fixes.

parent d171a552
......@@ -34,7 +34,7 @@ static LRESULT WINAPI MCIWndProc(HWND hWnd, UINT wMsg, WPARAM lParam1, LPARAM lP
#define CTL_TRACKBAR 0x3202
/***********************************************************************
* MCIWndRegisterClass [MSVFW.@]
* MCIWndRegisterClass [MSVFW32.@]
*/
BOOL WINAPI MCIWndRegisterClass(HINSTANCE hInst)
{
......@@ -59,8 +59,8 @@ BOOL WINAPI MCIWndRegisterClass(HINSTANCE hInst)
}
/***********************************************************************
* MCIWndCreate [MSVFW.@]
* MCIWndCreateA [MSVFW.@]
* MCIWndCreate [MSVFW32.@]
* MCIWndCreateA [MSVFW32.@]
*/
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 [MSVFW32.@]
*/
HWND VFWAPIV MCIWndCreateW(HWND hwndParent, HINSTANCE hInstance,
DWORD dwStyle, LPCWSTR szFile)
......
......@@ -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)
{
......
......@@ -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())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment