Changeset 432 for trunk/src


Ignore:
Timestamp:
Aug 6, 1999, 1:40:16 AM (26 years ago)
Author:
phaller
Message:

Add: added few stubs

Location:
trunk/src/user32
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/USER32.DEF

    r265 r432  
    1 ; $Id: USER32.DEF,v 1.8 1999-07-04 19:02:38 sandervl Exp $
     1; $Id: USER32.DEF,v 1.9 1999-08-05 23:39:48 phaller Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    485485    SetFocus                   = _SetFocus@4                 @475
    486486    SetForegroundWindow        = _SetForegroundWindow@4      @476
    487 ;    SetInternalWindowPos       = _SetInternalWindowPos@??    @477
     487    SetInternalWindowPos       = _SetInternalWindowPos@16    @477
    488488    SetKeyboardState           = _SetKeyboardState@4         @478
    489489    SetLastErrorEx             = _SetLastErrorEx@8           @479
  • trunk/src/user32/new/unknown.cpp

    r300 r432  
    1 /* $Id: unknown.cpp,v 1.1 1999-07-14 08:35:36 sandervl Exp $ */
     1/* $Id: unknown.cpp,v 1.2 1999-08-05 23:39:48 phaller Exp $ */
    22
    33/*
     
    1212#include <os2win.h>
    1313
    14 
    1514/*****************************************************************************
    1615 * Defines                                                                   *
    1716 *****************************************************************************/
     17
    1818
    1919/*****************************************************************************
     
    176176}
    177177
     178
     179/***********************************************************************
     180 *           SetInternalWindowPos   (USER32.483)
     181 */
     182void WIN32API SetInternalWindowPos(HWND    hwnd,
     183                                   UINT    showCmd,
     184                                   LPRECT  rect,
     185                                   LPPOINT pt )
     186{
     187  dprintf(("USER32: SetInternalWindowPos(%08xh,%08xh,%08xh,%08xh) not implemented.\n",
     188           hwnd,
     189           showCmd,
     190           rect,
     191           pt));
     192}
     193
  • trunk/src/user32/new/user32.def

    r342 r432  
    1 ; $Id: user32.def,v 1.3 1999-07-20 07:42:35 sandervl Exp $
     1; $Id: user32.def,v 1.4 1999-08-05 23:40:16 phaller Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    485485    SetFocus                   = _SetFocus@4                 @475
    486486    SetForegroundWindow        = _SetForegroundWindow@4      @476
    487 ;    SetInternalWindowPos       = _SetInternalWindowPos@??    @477
     487    SetInternalWindowPos       = _SetInternalWindowPos@16    @477
    488488    SetKeyboardState           = _SetKeyboardState@4         @478
    489489    SetLastErrorEx             = _SetLastErrorEx@8           @479
  • trunk/src/user32/unknown.cpp

    r173 r432  
    1 /* $Id: unknown.cpp,v 1.2 1999-06-24 08:25:22 phaller Exp $ */
     1/* $Id: unknown.cpp,v 1.3 1999-08-05 23:39:48 phaller Exp $ */
    22
    33/*
     
    1212#include <os2win.h>
    1313
    14 
    1514/*****************************************************************************
    1615 * Defines                                                                   *
    1716 *****************************************************************************/
     17
    1818
    1919/*****************************************************************************
     
    176176}
    177177
     178
     179/***********************************************************************
     180 *           SetInternalWindowPos   (USER32.483)
     181 */
     182void WIN32API SetInternalWindowPos(HWND    hwnd,
     183                                   UINT    showCmd,
     184                                   LPRECT  rect,
     185                                   LPPOINT pt )
     186{
     187  dprintf(("USER32: SetInternalWindowPos(%08xh,%08xh,%08xh,%08xh) not implemented.\n",
     188           hwnd,
     189           showCmd,
     190           rect,
     191           pt));
     192}
     193
Note: See TracChangeset for help on using the changeset viewer.