Ignore:
Timestamp:
Nov 25, 2011, 10:19:52 PM (14 years ago)
Author:
dmik
Message:

Make the debug version of ported DLLs build.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gcc-kmk/src/kernel32/dosqss.h

    r1924 r21824  
    77#endif
    88
    9 #ifdef __cplusplus
    10 extern "C" {
    11 #endif
    12 APIRET APIENTRY DosQuerySysState(ULONG func,ULONG arg1,ULONG arg2,
    13                                  ULONG _res_,PVOID buf,ULONG bufsz);
    14 
    15 #ifdef __cplusplus
    16 }
    17 #endif
    18 
    19 inline APIRET _DosQuerySysState(ULONG func,ULONG arg1,ULONG arg2,
    20                                 ULONG _res_,PVOID buf,ULONG bufsz)
    21 {
    22  APIRET yyrc;
    23  USHORT sel = RestoreOS2FS();
    24 
    25     yyrc = DosQuerySysState(func, arg1, arg2, _res_, buf, bufsz);
    26     SetFS(sel);
    27 
    28     return yyrc;
    29 }
     9/* DosQuerySysState is declared in os2wrap.h */
    3010
    3111#undef  DosAllocMem
Note: See TracChangeset for help on using the changeset viewer.