[PATCH 1/2] ras.h: Add RASCREDENTIALSA/W structures

Oleg Dubinskiy oleg.dubinskij2013 at yandex.ua
Thu Aug 20 06:31:16 CDT 2020


Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49726
Signed-off-by: Oleg Dubinskiy <oleg.dubinskij2013 at yandex.ua>
---
 include/ras.h | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/include/ras.h b/include/ras.h
index a8c04da2b6..bd29343dc5 100644
--- a/include/ras.h
+++ b/include/ras.h
@@ -372,6 +372,27 @@ typedef struct tagRASCONNSTATUSW
 
 DECL_WINELIB_TYPE_AW(RASCONNSTATUS)
 
+typedef struct tagRASCREDENTIALSA
+{
+  DWORD dwSize;
+  DWORD dwMask;
+  CHAR szUserName[UNLEN + 1];
+  CHAR szPassword[PWLEN + 1];
+  CHAR szDomain[DNLEN + 1];
+} RASCREDENTIALSA,*LPRASCREDENTIALSA;
+
+typedef struct tagRASCREDENTIALSW
+{
+  DWORD dwSize;
+  DWORD dwMask;
+  WCHAR szUserName[UNLEN + 1];
+  WCHAR szPassword[PWLEN + 1];
+  WCHAR szDomain[DNLEN + 1];
+} RASCREDENTIALSW,*LPRASCREDENTIALSW;
+
+DECL_WINELIB_TYPE_AW(RASCREDENTIALS)
+DECL_WINELIB_TYPE_AW(LPRASCREDENTIALS)
+
 typedef enum tagRASPROJECTION
 {
     RASP_Amb =    0x10000,
-- 
2.28.0




More information about the wine-devel mailing list