Ignore:
Timestamp:
Aug 16, 1999, 10:18:40 PM (26 years ago)
Author:
phaller
Message:

Fix: added odinwrap support to wsock32

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wsock32/unknown.cpp

    r283 r518  
    1 /* $Id: unknown.cpp,v 1.1 1999-07-07 12:18:04 phaller Exp $ */
     1/* $Id: unknown.cpp,v 1.2 1999-08-16 20:18:40 phaller Exp $ */
    22
    33/*
     
    1414#include <os2wrap.h>
    1515#include <misc.h>
     16#include <odinwrap.h>
    1617
     18
     19ODINDEBUGCHANNEL(WSOCK32-UNKNOWN)
    1720
    1821/*****************************************************************************
     
    2528
    2629/*****************************************************************************
    27  * Name      : int WIN32API OS2rexec
    28  * Purpose   :
     30 *
     31 * Purpose,  :
    2932 * Parameters:
    3033 * Variables :
     
    3639 *****************************************************************************/
    3740
    38 int WIN32API OS2rexec(LPSTR *lppArg1,
    39                       int   iArg2,
    40                       LPSTR lpArg3,
    41                       LPSTR lpArg4,
    42                       LPSTR lpArg5,
    43                       int   *lpiArg6)
     41ODINFUNCTION6(int, OS2rexec, LPSTR*, lppArg1,
     42                             int,    iArg2,
     43                             LPSTR, lpArg3,
     44                             LPSTR, lpArg4,
     45                             LPSTR, lpArg5,
     46                             int*,   lpiArg6)
    4447{
    45   dprintf(("WSOCK32: OS2rexec(%08xh,%08xh,%s,%s,%s,%08xh) not implemented correctly.\n",
    46            lppArg1,
    47            iArg2,
    48            lpArg3,
    49            lpArg4,
    50            lpArg5,
    51            lpiArg6));
     48  dprintf(("WSOCK32: OS2rexec not implemented correctly.\n"));
    5249
    5350  return rexec(lppArg1,
     
    6158
    6259/*****************************************************************************
    63  * Name      : int WIN32API OS2rcmd
    64  * Purpose   :
    65  * Parameters:
    66  * Variables :
     60 * ODINFUNCTION6( :, int, WIN32API, OS2rcmd,
     61 * Purpose, :,
     62 * Parameters:,
     63 * Variables, :,
    6764 * Result    :
    6865 * Remark    : WSOCK32.1103
     
    7269 *****************************************************************************/
    7370
    74 int WIN32API OS2rcmd(LPSTR      *lppArg1,
    75                      int        iArg2,
    76                      const char *lpArg3,
    77                      const char *lpArg4,
    78                      const char *lpArg5,
    79                      int        *lpiArg6)
     71ODINFUNCTION6(int, OS2rcmd, LPSTR*,     lppArg1,
     72                            int,        iArg2,
     73                            const char*,lpArg3,
     74                            const char*,lpArg4,
     75                            const char*,lpArg5,
     76                            int       *,lpiArg6)
    8077{
    81   dprintf(("WSOCK32: OS2rcmd(%08xh,%08xh,%s,%s,%s,%08xh) not implemented.\n",
    82            lppArg1,
    83            iArg2,
    84            lpArg3,
    85            lpArg4,
    86            lpArg5,
    87            lpiArg6));
     78  dprintf(("WSOCK32: rcmd not implemented.\n"));
    8879
    8980  //@@@PH actually it exists in TCP/IP 5.0 headers. Unknown which OS/2 function to link to.
     
    9990}
    10091
     92
Note: See TracChangeset for help on using the changeset viewer.