summaryrefslogtreecommitdiffstats
path: root/private/os2/client/dllnp16.c
blob: 8b6cac3fb035d2898edae432f7a2f94cdcfd6fe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
/*++

Copyright (c) 1991  Microsoft Corporation

Module Name:

    dllnp16.c

Abstract:

    This module implements 16 equivalents of OS/2 V1.21 Named Pipes
    API Calls. These are called from 16->32 thunks (i386\doscalls.asm).

Author:

    Michael Jarus (mjarus) 24-Feb-1992

Revision History:

--*/

#define INCL_OS2V20_PIPES
#define INCL_OS2V20_FILESYS
#define INCL_OS2V20_ERRORS
#include "os2dll.h"
#define INCL_DOSNMPIPES
#include "os2dll16.h"


APIRET
Dos16CallNPipe(
    PSZ pszName,
    PBYTE pInBuf,
    ULONG cbIn,
    PBYTE pOutBuf,
    ULONG cbOut,
    PUSHORT pcbActual,
    ULONG msec
    )
{
    ULONG   Actual;
    APIRET  Rc;

    try
    {
        Od2ProbeForWrite(pcbActual, sizeof(USHORT), 1);
    }
    except( EXCEPTION_EXECUTE_HANDLER )
    {
            Od2ExitGP();
    }

    Actual = (ULONG) *pcbActual;

    Rc = DosCallNPipe(
            pszName,
            pInBuf,
            cbIn,
            pOutBuf,
            cbOut,
            &Actual,
            msec
            );

    *pcbActual = (USHORT) Actual;

    return (Rc);

}


APIRET
Dos16CreateNPipe(
    IN PSZ      pszName,
    OUT PUSHORT phPipe,
    ULONG       fsOpenMode,
    ULONG       fsPipeMode,
    ULONG       cbOutBuf,
    ULONG       cbInBuf,
    ULONG       ulTimeOut
    )
{
    HPIPE   hPipe;
    APIRET  Rc;

    try
    {
        Od2ProbeForWrite(phPipe, sizeof(USHORT), 1);
    }
    except( EXCEPTION_EXECUTE_HANDLER )
    {
            Od2ExitGP();
    }

    hPipe = (HPIPE) *phPipe;

    Rc = DosCreateNPipe(
               pszName,
               &hPipe,
               fsOpenMode,
               fsPipeMode,
               cbOutBuf,
               cbInBuf,
               ulTimeOut
            );

    *phPipe = (USHORT) hPipe;

    return (Rc);

}


APIRET
Dos16PeekNPipe(
    HPIPE   hpipe,
    PBYTE   pBuf,
    ULONG   cbBuf,
    PUSHORT pActual,
    PUSHORT pcbMore,
    PUSHORT pState
    )
{
    ULONG   Actual;
    ULONG   State;
    APIRET  Rc;

    try
    {
        Od2ProbeForWrite(pActual, sizeof(USHORT), 1);
        Od2ProbeForWrite(pState, sizeof(USHORT), 1);
        Od2ProbeForWrite(pcbMore, sizeof(USHORT), 2);
    }
    except( EXCEPTION_EXECUTE_HANDLER )
    {
            Od2ExitGP ();
    }

    Actual = (ULONG) *pActual;
    State = (ULONG) *pState;

    Rc = DosPeekNPipe(
            hpipe,
            pBuf,
            cbBuf,
            &Actual,
            (PULONG)pcbMore,
            &State
            );

    *pActual = (USHORT) Actual;
    *pState = (USHORT) State;

    return (Rc);
}


APIRET
Dos16QueryNPHState(
    HPIPE   hpipe,
    PUSHORT pState
    )
{
    ULONG   State;
    APIRET  Rc;

    try
    {
        Od2ProbeForWrite(pState, sizeof(USHORT), 1);
    }
    except( EXCEPTION_EXECUTE_HANDLER )
    {
            Od2ExitGP ();
    }

    State = (ULONG) *pState;

    Rc = DosQueryNPHState(
            hpipe,
            &State
            );

    *pState = (USHORT) State;

    return (Rc);

}

APIRET
Dos16TransactNPipe(
    HPIPE   hNamedPipe,
    PBYTE   pInBuf,
    ULONG   cbIn,
    PBYTE   pOutBuf,
    ULONG   cbOut,
    PUSHORT pcbRead
    )
{
    ULONG   cbRead;
    APIRET  Rc;

    try
    {
        Od2ProbeForWrite(pcbRead, sizeof(USHORT), 1);
    }
    except( EXCEPTION_EXECUTE_HANDLER )
    {
            Od2ExitGP ();
    }

    cbRead = (ULONG) *pcbRead;

    Rc = DosTransactNPipe(
            hNamedPipe,
            pInBuf,
            cbIn,
            pOutBuf,
            cbOut,
            &cbRead
            );

    *pcbRead = (USHORT) cbRead;

    return (Rc);

}