Ignore:
Timestamp:
Jul 12, 2001, 7:16:33 PM (24 years ago)
Author:
sandervl
Message:

added wine code

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/oleaut32/oleaut32.cpp

    r5650 r6311  
    1 /* $Id: oleaut32.cpp,v 1.7 2001-05-03 18:18:53 sandervl Exp $ */
     1/* $Id: oleaut32.cpp,v 1.8 2001-07-12 17:16:12 sandervl Exp $ */
    22/*
    33 * OLEAUT32
     
    4444
    4545
    46 /***********************************************************************
    47  *           OaBuildVersion           [OLEAUT32.170]
    48  */
    49 UINT WINAPI OaBuildVersion()
    50 {
    51 #if 1
    52     dprintf(("OLEAUT32: OaBuildVersion"));
    53     // Patched DJR 22/9/99 for VB6 runtime.
    54     return 0x1E0101;
    55 #else
    56     WINDOWS_VERSION ver = VERSION_GetVersion();
    57 
    58     FIXME("Please report to a.mohr@mailto.de if you get version error messages !\n");
    59     switch(VersionData[ver].getVersion32)
    60     {
    61         case 0x80000a03: /* Win 3.1 */
    62                 return 0x140fd1; /* from Win32s 1.1e */
    63         case 0xc0000004: /* Win 95 */
    64          case 0xc0000a04: /* Win 98: verified same as Win95 */
    65                 return 0x1e10a9; /* some older version: 0x0a0bd3 */
    66         case 0x04213303: /* NT 3.51 */
    67                 FIXME("NT 3.51 version value unknown !\n");
    68                 return 0x1e10a9; /* value borrowed from Win95 */
    69         case 0x05650004: /* NT 4.0 */
    70                 return 0x141016;
    71         default:
    72                 return 0x0;
    73     }
    74 #endif
    75 }
Note: See TracChangeset for help on using the changeset viewer.