Changeset 895


Ignore:
Timestamp:
Sep 9, 1999, 8:01:10 PM (26 years ago)
Author:
dengert
Message:

new DC related code.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/changelog

    r891 r895  
    1  /* $Id: changelog,v 1.188 1999-09-09 10:25:54 phaller Exp $ */
     1 /* $Id: changelog,v 1.189 1999-09-09 18:01:09 dengert Exp $ */
     2
     3 99-09-09: Daniela Engert <dani@ngrt.de>
     4        - USER32\NEW: begin new DC/related code. BeginPaint/EndPaint done.
    25
    36 99-09-09: Patrick Haller <phaller@gmx.net>
     
    912 99-09-08: Yuri Dario <mc6530@mclink.it>
    1013        - INCLUDE\WIN: Changes to wingdi.h (more WINELIB_NAME defs) & winuser.h (mssing definitions)
    11                        Missing ';' in custcntl.h at line 106
     14                       Missing ';' in custcntl.h at line 106
    1215
    1316 99-09-08: David Raison
     
    1619 99-09-08: knut st. osmundsen <knut.stange.osmundsen@pmsc.no>
    1720    - KERNEL32, USER32, USER32\NEW, GDI32, ADVAPI32: <dllname>exp.def is
    18         now generated by a util called ImpDef. (source in tools\impdef).
     21        now generated by a util called ImpDef. (source in tools\impdef).
    1922    - INC: pdwin32.tools is updated with a IMPDEF macro. This requires
    20         the macro PDWIN32_TOOLS too point to the tools\bin directory.
     23        the macro PDWIN32_TOOLS too point to the tools\bin directory.
    2124    - TOOLS: New directory tree for tools developed to aid us create odin32.
    22         Create a subdirectory for each tool.
    23         Currently database, impdef and omfdumper is placed here.
     25        Create a subdirectory for each tool.
     26        Currently database, impdef and omfdumper is placed here.
    2427    - TOOLS\IMPDEF: generates the <dllname>exp.def files.
    2528    - TOOLS\OMFDUMPER: source for the omfdumper use to create pmwinx.def.
    26         Base source for a library converted used in win32k.
     29        Base source for a library converted used in win32k.
    2730    - TOOLS\DATABASE: source for the odin32 API database and it's tools.
    28         See the Odin32 API Database Design Document for more info.
    29         Document will soon be placed in the 'Vault' of the win32-os2 group.
     31        See the Odin32 API Database Design Document for more info.
     32        Document will soon be placed in the 'Vault' of the win32-os2 group.
    3033    - TOOLS\DATABASE\MYSQL: mysql headers and libraries.
    3134    - TOOLS\DATABASE\GD: Gifdraw 1.2 - used to draw graphs.
     
    3841        - Minor changes to odin.h (nameless union allowed in VAC 3.6.5) & windowsx.h
    3942        - USER32\NEW: Use fixed user32exp.def. Doesn't work for GetOS2Callback__15Win32WindowProcFv
    40                       (causes link failure for comdlg32)
     43                      (causes link failure for comdlg32)
    4144        - TOOLS\WRC: Ported Wine wrc. Needs EMX+GCC
    4245
     
    5861        - KERNEL32: Fixed icon- & cursorgroup conversion (Solitaire icon now correct again)
    5962        - USER32\NEW: Started with Wine dialog code port. Dialog creation done,
    60                       but not tested.
     63                      but not tested.
    6164
    6265 99-09-04: Jens Wiessner <wiessnej@rfi.de>
  • trunk/include/win32type.h

    r820 r895  
    1 /* $Id: win32type.h,v 1.19 1999-09-04 19:20:44 sandervl Exp $ */
     1/* $Id: win32type.h,v 1.20 1999-09-09 18:01:10 dengert Exp $ */
    22
    33/*
     
    126126typedef const unsigned char* PCBYTE;
    127127
     128// floats
     129#undef FLOAT
     130#undef PFLOAT
     131#undef LPFLOAT
     132typedef float FLOAT, *PFLOAT, *LPFLOAT;
    128133
    129134#endif
     
    249254typedef       unsigned char* LPBYTE;
    250255typedef const unsigned char* LPCBYTE;
     256
     257// floats
     258#undef FLOAT
     259#undef PFLOAT
     260#undef LPFLOAT
     261typedef float FLOAT, *PFLOAT, *LPFLOAT;
    251262
    252263// doubles
Note: See TracChangeset for help on using the changeset viewer.