Changeset 5925


Ignore:
Timestamp:
Jun 7, 2001, 2:46:40 PM (25 years ago)
Author:
sandervl
Message:

compile fix for vac 3.6.5

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/odin.h

    r5518 r5925  
    8989
    9090#ifndef RC_INVOKED
    91   #if (__IBMC__ == 300)
     91  //Nameless unions or structures are not supported in C mode
     92  //(nameless unions only in CPP mode and nameless unions only in VAC 3.6.5 CPP mode)
     93  #ifdef __IBMC__
    9294  #define NONAMELESSUNION
     95  #define NONAMELESSSTRUCT
    9396  #endif
    94   #if (__IBMCPP__ == 300) | (__IBMC__ == 300)
     97  #if (__IBMCPP__ == 300)
    9598  #define NONAMELESSSTRUCT
    9699  #endif
  • trunk/src/ole32/ole32.h

    r5918 r5925  
    1 /* $Id: ole32.h,v 1.16 2001-06-06 17:17:21 bird Exp $ */
     1/* $Id: ole32.h,v 1.17 2001-06-07 12:46:40 sandervl Exp $ */
    22/*
    33 *
     
    1414#ifndef __OLE32_H__
    1515#define __OLE32_H__
    16 
    17 #ifndef NONAMELESSUNION
    18 #define NONAMELESSUNION
    19 #endif
    2016
    2117// ><DJR 17.05.99 Force to use C-interfaces for now to prevent CALLBACK definition compiler error
Note: See TracChangeset for help on using the changeset viewer.