Changeset 4601 for trunk/src


Ignore:
Timestamp:
Nov 15, 2000, 9:44:26 PM (25 years ago)
Author:
sandervl
Message:

export BITMAP_GetWidthBytes

Location:
trunk/src/user32
Files:
3 edited

Legend:

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

    r4597 r4601  
    1 ; $Id: USER32.DEF,v 1.43 2000-11-15 13:57:54 sandervl Exp $
     1; $Id: USER32.DEF,v 1.44 2000-11-15 20:44:25 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    666666    _Calculate1PixelDelta@4                                      @2022
    667667    _DIB_GetDIBWidthBytes@8                                      @2023
    668     _selectClientArea@4                                          @2024
     668    _BITMAP_GetWidthBytes@8                                      @2024
     669    _selectClientArea@4                                          @2025
     670
  • trunk/src/user32/dib.cpp

    r4589 r4601  
    1 /* $Id: dib.cpp,v 1.7 2000-11-14 14:27:49 sandervl Exp $ */
     1/* $Id: dib.cpp,v 1.8 2000-11-15 20:44:26 sandervl Exp $ */
    22
    33/*
     
    216216 * data.
    217217 */
    218 int BITMAP_GetWidthBytes( INT bmWidth, INT bpp )
     218int WIN32API BITMAP_GetWidthBytes( INT bmWidth, INT bpp )
    219219{
    220220    switch(bpp)
  • trunk/src/user32/dib.h

    r4589 r4601  
    1 /* $Id: dib.h,v 1.5 2000-11-14 14:27:49 sandervl Exp $ */
     1/* $Id: dib.h,v 1.6 2000-11-15 20:44:26 sandervl Exp $ */
    22
    33/*
     
    2727                              int *height, WORD *bpp, WORD *compr );
    2828void DIB_FixColorsToLoadflags(BITMAPINFO * bmi, UINT loadflags, BYTE pix);
    29 int  BITMAP_GetWidthBytes( INT width, INT depth );
     29int  WIN32API BITMAP_GetWidthBytes( INT width, INT depth );
    3030
    3131#endif
Note: See TracChangeset for help on using the changeset viewer.