Changeset 982


Ignore:
Timestamp:
Sep 19, 1999, 10:24:47 AM (26 years ago)
Author:
sandervl
Message:

David Raison partially implemented MessageBoxIndirectA/W

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/user32/msgbox.cpp

    r949 r982  
    1 /* $Id: msgbox.cpp,v 1.1 1999-09-15 23:18:52 sandervl Exp $ */
     1/* $Id: msgbox.cpp,v 1.2 1999-09-19 08:24:47 sandervl Exp $ */
    22/*
    33 * Win32 message box function for OS/2
     
    101101INT WIN32API MessageBoxIndirectW(LPMSGBOXPARAMSW lpMsgBoxParams)
    102102{
    103   dprintf(("USER32:MessageBoxIndirectW (%08x) not implemented.\n",
     103  dprintf(("USER32:MessageBoxIndirectW (%08x) partially implemented.\n",
    104104         lpMsgBoxParams));
    105105
    106   return (FALSE);
     106  return (MessageBoxW(lpMsgBoxParams->hwndOwner,
     107                      lpMsgBoxParams->lpszText,
     108                      lpMsgBoxParams->lpszCaption,
     109                      lpMsgBoxParams->dwStyle));
    107110}
    108111
     
    126129INT  WIN32API MessageBoxIndirectA(LPMSGBOXPARAMSA lpMsgBoxParams)
    127130{
    128   dprintf(("USER32:MessageBoxIndirectA (%08x) not implemented.\n",
     131  dprintf(("USER32:MessageBoxIndirectA (%08x) partially implemented.\n",
    129132         lpMsgBoxParams));
    130133
    131   return (FALSE);
     134  return (MessageBoxA(lpMsgBoxParams->hwndOwner,
     135                      lpMsgBoxParams->lpszText,
     136                      lpMsgBoxParams->lpszCaption,
     137                      lpMsgBoxParams->dwStyle));
    132138}
    133139//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.