Changeset 877 for trunk/include/win


Ignore:
Timestamp:
Sep 8, 1999, 3:47:21 PM (26 years ago)
Author:
sandervl
Message:

minor header file changes

Location:
trunk/include/win
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/custcntl.h

    r876 r877  
     1/* $Id: custcntl.h,v 1.3 1999-09-08 13:47:21 sandervl Exp $ */
    12#ifndef __CUSTCNTL_H__
    23#define __CUSTCNTL_H__
  • trunk/include/win/windef.h

    r805 r877  
    1 /* $Id: windef.h,v 1.9 1999-09-02 20:56:29 phaller Exp $ */
     1/* $Id: windef.h,v 1.10 1999-09-08 13:46:36 sandervl Exp $ */
    22
    33/*
     
    636636     (r16)->right = (INT16)(r32)->right, (r16)->bottom = (INT16)(r32)->bottom)
    637637
     638/*
     639 * 8.9.99 DJR DECIMAL support
     640 */
     641typedef struct tagDEC
     642{
     643    USHORT wReserved;
     644    union
     645    {
     646      struct
     647      {
     648          BYTE scale;
     649          BYTE sign;
     650      } a;
     651      USHORT signscale;
     652    } b;
     653    ULONG Hi32;
     654    union
     655    {
     656      struct
     657      {
     658          ULONG Lo32;
     659          ULONG Mid32;
     660      } c;
     661      ULONGLONG_W Lo64;
     662    } d;
     663} DECIMAL;
     664
    638665#ifdef __cplusplus
    639666}
Note: See TracChangeset for help on using the changeset viewer.