Changeset 4589 for trunk/src/user32


Ignore:
Timestamp:
Nov 14, 2000, 3:27:49 PM (25 years ago)
Author:
sandervl
Message:

export DIB function for GDI32

Location:
trunk/src/user32
Files:
3 edited

Legend:

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

    r4585 r4589  
    1 ; $Id: USER32.DEF,v 1.41 2000-11-11 18:39:29 sandervl Exp $
     1; $Id: USER32.DEF,v 1.42 2000-11-14 14:27:47 sandervl Exp $
    22
    33;Created by BLAST for IBM's compiler
     
    665665    _TestWideLine@4                                              @2021
    666666    _Calculate1PixelDelta@4                                      @2022
     667    _DIB_GetDIBWidthBytes@8                                      @2023
  • trunk/src/user32/dib.cpp

    r4573 r4589  
    1 /* $Id: dib.cpp,v 1.6 2000-11-09 18:15:18 sandervl Exp $ */
     1/* $Id: dib.cpp,v 1.7 2000-11-14 14:27:49 sandervl Exp $ */
    22
    33/*
     
    3131 * http://www.microsoft.com/msdn/sdk/platforms/doc/sdk/win32/struc/src/str01.htm
    3232 */
    33 int DIB_GetDIBWidthBytes( int width, int depth )
     33int WIN32API DIB_GetDIBWidthBytes( int width, int depth )
    3434{
    3535    int words;
  • trunk/src/user32/dib.h

    r4573 r4589  
    1 /* $Id: dib.h,v 1.4 2000-11-09 18:15:18 sandervl Exp $ */
     1/* $Id: dib.h,v 1.5 2000-11-14 14:27:49 sandervl Exp $ */
    22
    33/*
     
    1919#define __DIB_H__
    2020
    21 int DIB_GetDIBWidthBytes( int width, int depth );
     21//must use WIN32API as it's exported
     22int WIN32API DIB_GetDIBWidthBytes( int width, int depth );
     23
    2224int DIB_GetDIBImageBytes( int width, int height, int depth );
    2325int DIB_BitmapInfoSize( BITMAPINFO * info, WORD coloruse );
Note: See TracChangeset for help on using the changeset viewer.