diff options
author | Danny Smith <dannysmith@users.sourceforge.net> | 2003-01-25 00:47:25 +0000 |
---|---|---|
committer | Danny Smith <dannysmith@users.sourceforge.net> | 2003-01-25 00:47:25 +0000 |
commit | 81632e9e5535d7b9b0da142dc15037ca7eb239c2 (patch) | |
tree | 82f9bc0c8b3279c357cc15b1d43d71616b02c056 | |
parent | bb9f07bc54aef09e646d86146f9308e12138ccb2 (diff) | |
download | newlib-81632e9e5535d7b9b0da142dc15037ca7eb239c2.zip newlib-81632e9e5535d7b9b0da142dc15037ca7eb239c2.tar.gz newlib-81632e9e5535d7b9b0da142dc15037ca7eb239c2.tar.bz2 |
* include/ras.h (RASCONN[AW]): Add dwSessionId for
(WINVER >= 0x501).
-rw-r--r-- | winsup/w32api/ChangeLog | 5 | ||||
-rw-r--r-- | winsup/w32api/include/ras.h | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/winsup/w32api/ChangeLog b/winsup/w32api/ChangeLog index c946a7f..331e316 100644 --- a/winsup/w32api/ChangeLog +++ b/winsup/w32api/ChangeLog @@ -1,5 +1,10 @@ 2003-01-24 Danny Smith <dannysmith@users.sourceforge.net> + * include/ras.h (RASCONN[AW]): Add dwSessionId for + (WINVER >= 0x501). + +2003-01-24 Danny Smith <dannysmith@users.sourceforge.net> + * include/ras.h (RASCONN[AW]): Guard szDeviceType, szDeviceName fields with (WINVER >= 0x400). Add dwFlags, luid fields for (WINVER >= 0x501). diff --git a/winsup/w32api/include/ras.h b/winsup/w32api/include/ras.h index db7c3c3..2799be3 100644 --- a/winsup/w32api/include/ras.h +++ b/winsup/w32api/include/ras.h @@ -234,6 +234,7 @@ typedef struct tagRASCONNW { GUID guidEntry; #endif #if (WINVER >= 0x501) + DWORD dwSessionId; DWORD dwFlags; LUID luid; #endif @@ -255,6 +256,7 @@ typedef struct tagRASCONNA { GUID guidEntry; #endif #if (WINVER >= 0x501) + DWORD dwSessionId; DWORD dwFlags; LUID luid; #endif |