Detlef Riekenberg : include: Update RASCONN and error codes.
Module: wine Branch: master Commit: e5ab43c256d504f37c3e521fdf9239b8c369d687 URL: http://source.winehq.org/git/wine.git/?a=commit;h=e5ab43c256d504f37c3e521fdf... Author: Detlef Riekenberg <wine.dev(a)web.de> Date: Mon Sep 8 05:20:26 2008 +0200 include: Update RASCONN and error codes. --- include/ras.h | 8 ++++++++ include/raserror.h | 1 + 2 files changed, 9 insertions(+), 0 deletions(-) diff --git a/include/ras.h b/include/ras.h index f90d25a..3a75f41 100644 --- a/include/ras.h +++ b/include/ras.h @@ -81,6 +81,10 @@ typedef struct tagRASCONNA { CHAR szDeviceName[ RAS_MaxDeviceName + 1 ]; CHAR szPhonebook[ MAX_PATH ]; DWORD dwSubEntry; + GUID guidEntry; + DWORD dwFlags; + LUID luid; + GUID guidCorrelationId; } RASCONNA,*LPRASCONNA; typedef struct tagRASCONNW { @@ -91,6 +95,10 @@ typedef struct tagRASCONNW { WCHAR szDeviceName[ RAS_MaxDeviceName + 1 ]; WCHAR szPhonebook[ MAX_PATH ]; DWORD dwSubEntry; + GUID guidEntry; + DWORD dwFlags; + LUID luid; + GUID guidCorrelationId; } RASCONNW,*LPRASCONNW; DECL_WINELIB_TYPE_AW(RASCONN) diff --git a/include/raserror.h b/include/raserror.h index ad38cd3..694dfe9 100644 --- a/include/raserror.h +++ b/include/raserror.h @@ -21,6 +21,7 @@ #define RASBASE 600 #define ERROR_BUFFER_TOO_SMALL (RASBASE+3) +#define ERROR_BUFFER_INVALID (RASBASE+10) #define ERROR_INVALID_SIZE (RASBASE+32) #define ERROR_RASMAN_CANNOT_INITIALIZE (RASBASE+111)
participants (1)
-
Alexandre Julliard