|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| Yes
| Win32s
| No
| Import Library
| -
| Header File
| ras.h
| Unicode
| WinNT
| Platform Notes
| None
|
|
|
RASPPPIPX
The RASPPPIPX structure contains the result of a PPP Internetwork Packet Exchange (IPX)
projection operation.
The RasGetProjectionInfo function returns a RASPPPIPX data structure when its rasprojection parameter has the value RASP_PppIpx.
typedef struct _RASPPPIPX {
DWORD dwSize;
DWORD dwError;
TCHAR szIpxAddress[ RAS_MaxIpxAddress + 1 ];
} RASPPPIPX;
Members
dwSize
Specifies the size of the structure, in bytes. Before calling the RasGetProjectionInfo function, set this member to sizeof(RASPPPIPX). The function can then determine the version of the RASPPPIPX data structure that the caller of RasGetProjectionInfo is expecting. This allows backwards compatibility for compiled applications
if there are future enhancements to the data structure.
dwError
Contains the result of the PPP control protocol negotiation. A value of zero
indicates success. A nonzero value indicates failure, and is the actual fatal
error that occurred during the control protocol negotiation, the error that
prevented the projection from completing successfully.
szIpxAddress
Contains a zero-terminated string that is the client's IPX address on the RAS
connection. This address string has the form net.node; for example, "1234ABCD.12AB34CD56EF".
See Also
RasGetProjectionInfo, RASPROJECTION
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|