mirror of
https://github.com/reactos/reactos.git
synced 2025-07-29 10:01:43 +00:00
Fixed RegisterClipboardFormatW.
svn path=/trunk/; revision=7212
This commit is contained in:
parent
9516179123
commit
8bde79329e
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: clipboard.c,v 1.9 2003/12/14 17:59:15 navaraf Exp $
|
||||
/* $Id: clipboard.c,v 1.10 2003/12/24 11:24:29 navaraf Exp $
|
||||
*
|
||||
* PROJECT: ReactOS user32.dll
|
||||
* FILE: lib/user32/windows/input.c
|
||||
|
@ -206,7 +206,7 @@ RegisterClipboardFormatA(LPCSTR lpszFormat)
|
|||
UINT STDCALL
|
||||
RegisterClipboardFormatW(LPCWSTR lpszFormat)
|
||||
{
|
||||
ULONG Ret = RegisterClipboardFormatW(lpszFormat);
|
||||
ULONG Ret = RegisterWindowMessageW(lpszFormat);
|
||||
DbgPrint("RegisterClipboardFormatW(%S) - %x\n", lpszFormat, Ret);
|
||||
return Ret;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue