Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
34a02f15
Commit
34a02f15
authored
Nov 07, 1999
by
Rein Klazes
Committed by
Alexandre Julliard
Nov 07, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for RasEnumEntriesA and RasGetEntryDialParamsA.
parent
64bc46c3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
64 additions
and
0 deletions
+64
-0
rasapi.c
dlls/rasapi32/rasapi.c
+24
-0
lmcons.h
include/lmcons.h
+11
-0
ras.h
include/ras.h
+29
-0
No files found.
dlls/rasapi32/rasapi.c
View file @
34a02f15
...
...
@@ -18,3 +18,27 @@ DWORD WINAPI RasEnumConnectionsA( LPRASCONNA rca, LPDWORD x, LPDWORD y) {
FIXME
(
"(%p,%p,%p),stub!
\n
"
,
rca
,
x
,
y
);
return
0
;
}
/**************************************************************************
* RasEnumEntriesA [RASAPI32.546]
*/
DWORD
WINAPI
RasEnumEntriesA
(
LPSTR
Reserved
,
LPSTR
lpszPhoneBook
,
LPRASENTRYNAME
lpRasEntryName
,
LPDWORD
lpcb
,
LPDWORD
lpcEntries
)
{
FIXME
(
"(%p,%s,%p,%p,%p),stub!
\n
"
,
Reserved
,
debugstr_a
(
lpszPhoneBook
),
lpRasEntryName
,
lpcb
,
lpcEntries
);
return
0
;
}
/**************************************************************************
* RasGetEntryDialParamsA [RASAPI32.550]
*/
DWORD
WINAPI
RasGetEntryDialParamsA
(
LPSTR
lpszPhoneBook
,
LPRASDIALPARAMS
lpRasDialParams
,
LPBOOL
lpfPassword
)
{
FIXME
(
"(%s,%p,%p),stub!
\n
"
,
debugstr_a
(
lpszPhoneBook
),
lpRasDialParams
,
lpfPassword
);
return
0
;
}
include/lmcons.h
0 → 100644
View file @
34a02f15
#ifndef __WINE_LMCONS_H
#define __WINE_LMCONS_H
/* Lan manager API defines */
#define UNLEN 256
/* Maximum user name length */
#define PWLEN 256
/* Maximum password length */
#define CNLEN 15
/* Computer name length */
#define DNLEN CNLEN
/* Maximum domain name length */
#endif
include/ras.h
View file @
34a02f15
...
...
@@ -2,8 +2,11 @@
#define __WINE_RAS_H
#include "windef.h"
#include "lmcons.h"
#define RAS_MaxEntryName 256
#define RAS_MaxPhoneNumber 128
#define RAS_MaxCallbackNumber RAS_MaxPhoneNumber
typedef
struct
tagRASCONNA
{
DWORD
dwSize
;
...
...
@@ -11,5 +14,31 @@ typedef struct tagRASCONNA {
CHAR
szEntryName
[
RAS_MaxEntryName
+
1
];
}
RASCONNA
,
*
LPRASCONNA
;
typedef
struct
tagRASENTRYNAME
{
DWORD
dwSize
;
CHAR
szEntryName
[
RAS_MaxEntryName
+
1
];
}
RASENTRYNAME
,
*
LPRASENTRYNAME
;
typedef
struct
tagRASDIALPARAMS
{
DWORD
dwSize
;
WCHAR
szEntryName
[
RAS_MaxEntryName
+
1
];
WCHAR
szPhoneNumber
[
RAS_MaxPhoneNumber
+
1
];
WCHAR
szCallbackNumber
[
RAS_MaxCallbackNumber
+
1
];
WCHAR
szUserName
[
UNLEN
+
1
];
WCHAR
szPassword
[
PWLEN
+
1
];
WCHAR
szDomain
[
DNLEN
+
1
];
DWORD
dwSubEntry
;
DWORD
dwCallbackId
;
}
RASDIALPARAMS
,
*
LPRASDIALPARAMS
;
DWORD
WINAPI
RasEnumConnectionsA
(
LPRASCONNA
rc
,
LPDWORD
x
,
LPDWORD
y
);
DWORD
WINAPI
RasEnumEntriesA
(
LPSTR
Reserved
,
LPSTR
lpszPhoneBook
,
LPRASENTRYNAME
lpRasEntryName
,
LPDWORD
lpcb
,
LPDWORD
lpcEntries
);
DWORD
WINAPI
RasGetEntryDialParamsA
(
LPSTR
lpszPhoneBook
,
LPRASDIALPARAMS
lpRasDialParams
,
LPBOOL
lpfPassword
);
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment