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
9484e56b
Commit
9484e56b
authored
Jun 27, 2005
by
Mike McCormack
Committed by
Alexandre Julliard
Jun 27, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Declare and fix function prototypes.
parent
6cb97534
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
14 deletions
+39
-14
rasapi.c
dlls/rasapi32/rasapi.c
+2
-5
ras.h
include/ras.h
+37
-9
No files found.
dlls/rasapi32/rasapi.c
View file @
9484e56b
...
...
@@ -220,7 +220,7 @@ DWORD WINAPI RasDeleteEntryW(LPCWSTR a, LPCWSTR b)
/**************************************************************************
* RasEnumAutodialAddressesA [RASAPI32.14]
*/
DWORD
WINAPI
RasEnumAutodialAddressesA
(
LP
C
STR
*
a
,
LPDWORD
b
,
LPDWORD
c
)
DWORD
WINAPI
RasEnumAutodialAddressesA
(
LPSTR
*
a
,
LPDWORD
b
,
LPDWORD
c
)
{
FIXME
(
"(%p,%p,%p),stub!
\n
"
,
a
,
b
,
c
);
return
0
;
...
...
@@ -229,15 +229,12 @@ DWORD WINAPI RasEnumAutodialAddressesA(LPCSTR *a, LPDWORD b, LPDWORD c)
/**************************************************************************
* RasEnumAutodialAddressesW [RASAPI32.15]
*/
DWORD
WINAPI
RasEnumAutodialAddressesW
(
LP
C
WSTR
*
a
,
LPDWORD
b
,
LPDWORD
c
)
DWORD
WINAPI
RasEnumAutodialAddressesW
(
LPWSTR
*
a
,
LPDWORD
b
,
LPDWORD
c
)
{
FIXME
(
"(%p,%p,%p),stub!
\n
"
,
a
,
b
,
c
);
return
0
;
}
typedef
LPVOID
LPRASAUTODIALENTRYA
;
typedef
LPVOID
LPRASAUTODIALENTRYW
;
/**************************************************************************
* RasEnumDevicesA [RASAPI32.19]
*
...
...
include/ras.h
View file @
9484e56b
...
...
@@ -393,6 +393,23 @@ typedef struct tagRASDIALEXTENSIONS
ULONG_PTR
reserved
;
}
RASDIALEXTENSIONS
,
*
LPRASDIALEXTENSIONS
;
typedef
struct
tagRASAUTODIALENTRYA
{
DWORD
dwSize
;
DWORD
dwFlags
;
DWORD
dwDialingLocation
;
CHAR
szEntry
[
RAS_MaxEntryName
+
1
];
}
RASAUTODIALENTRYA
,
*
LPRASAUTODIALENTRYA
;
typedef
struct
tagRASAUTODIALENTRYW
{
DWORD
dwSize
;
DWORD
dwFlags
;
DWORD
dwDialingLocation
;
WCHAR
szEntry
[
RAS_MaxEntryName
+
1
];
}
RASAUTODIALENTRYW
,
*
LPRASAUTODIALENTRYW
;
DWORD
WINAPI
RasConnectionNotificationA
(
HRASCONN
,
HANDLE
,
DWORD
);
DWORD
WINAPI
RasConnectionNotificationW
(
HRASCONN
,
HANDLE
,
DWORD
);
#define RasConnectionNotification WINELIB_NAME_AW(RasConnectionNotification)
...
...
@@ -411,6 +428,9 @@ DWORD WINAPI RasDialW(LPRASDIALEXTENSIONS,LPCWSTR,LPRASDIALPARAMSW,DWORD,LPVOID,
DWORD
WINAPI
RasEditPhonebookEntryA
(
HWND
,
LPCSTR
,
LPCSTR
);
DWORD
WINAPI
RasEditPhonebookEntryW
(
HWND
,
LPCWSTR
,
LPCWSTR
);
#define RasEditPhonebookEntry WINELIB_NAME_AW(RasEditPhonebookEntry)
DWORD
WINAPI
RasEnumAutodialAddressesA
(
LPSTR
*
,
LPDWORD
,
LPDWORD
);
DWORD
WINAPI
RasEnumAutodialAddressesW
(
LPWSTR
*
,
LPDWORD
,
LPDWORD
);
#define RasEnumAutodialAddresses WINELIB_NAME_AW(RasEnumAutodialAddresses)
DWORD
WINAPI
RasEnumConnectionsA
(
LPRASCONNA
,
LPDWORD
,
LPDWORD
);
DWORD
WINAPI
RasEnumConnectionsW
(
LPRASCONNW
,
LPDWORD
,
LPDWORD
);
#define RasEnumConnections WINELIB_NAME_AW(RasEnumConnections)
...
...
@@ -420,6 +440,15 @@ DWORD WINAPI RasEnumDevicesW(LPRASDEVINFOW,LPDWORD,LPDWORD);
DWORD
WINAPI
RasEnumEntriesA
(
LPCSTR
,
LPCSTR
,
LPRASENTRYNAMEA
,
LPDWORD
,
LPDWORD
);
DWORD
WINAPI
RasEnumEntriesW
(
LPCWSTR
,
LPCWSTR
,
LPRASENTRYNAMEW
,
LPDWORD
,
LPDWORD
);
#define RasEnumEntries WINELIB_NAME_AW(RasEnumEntries)
DWORD
WINAPI
RasGetAutodialAddressA
(
LPCSTR
,
LPDWORD
,
LPRASAUTODIALENTRYA
,
LPDWORD
,
LPDWORD
);
DWORD
WINAPI
RasGetAutodialAddressW
(
LPCWSTR
,
LPDWORD
,
LPRASAUTODIALENTRYW
,
LPDWORD
,
LPDWORD
);
#define RasGetAutodialAddresses WINELIB_NAME_AW(RasGetAutodialAddresses)
DWORD
WINAPI
RasGetAutodialEnableA
(
DWORD
,
LPBOOL
);
DWORD
WINAPI
RasGetAutodialEnableW
(
DWORD
,
LPBOOL
);
#define RasGetAutodialEnable WINELIB_NAME_AW(RasGetAutodialEnable)
DWORD
WINAPI
RasGetAutodialParamA
(
DWORD
dwKey
,
LPVOID
lpvValue
,
LPDWORD
lpdwcbValue
);
DWORD
WINAPI
RasGetAutodialParamW
(
DWORD
dwKey
,
LPVOID
lpvValue
,
LPDWORD
lpdwcbValue
);
#define RasGetAutodialParam WINELIB_NAME_AW(RasGetAutodialParam)
DWORD
WINAPI
RasGetConnectStatusA
(
HRASCONN
,
LPRASCONNSTATUSA
);
DWORD
WINAPI
RasGetConnectStatusW
(
HRASCONN
,
LPRASCONNSTATUSW
);
#define RasGetConnectStatus WINELIB_NAME_AW(RasGetConnectStatus)
...
...
@@ -441,6 +470,12 @@ DWORD WINAPI RasHangUpW(HRASCONN);
DWORD
WINAPI
RasRenameEntryA
(
LPCSTR
,
LPCSTR
,
LPCSTR
);
DWORD
WINAPI
RasRenameEntryW
(
LPCWSTR
,
LPCWSTR
,
LPCWSTR
);
#define RasRenameEntry WINELIB_NAME_AW(RasRenameEntry)
DWORD
WINAPI
RasSetAutodialAddressA
(
LPCSTR
,
DWORD
,
LPRASAUTODIALENTRYA
,
DWORD
,
DWORD
);
DWORD
WINAPI
RasSetAutodialAddressW
(
LPCWSTR
,
DWORD
,
LPRASAUTODIALENTRYW
,
DWORD
,
DWORD
);
#define RasSetAutodialAddress WINELIB_NAME_AW(RasSetAutodialAddress)
DWORD
WINAPI
RasSetAutodialParamA
(
DWORD
,
LPVOID
,
DWORD
);
DWORD
WINAPI
RasSetAutodialParamW
(
DWORD
,
LPVOID
,
DWORD
);
#define RasSetAutodialParam WINELIB_NAME_AW(RasSetAutodialParam)
DWORD
WINAPI
RasSetEntryDialParamsA
(
LPCSTR
,
LPRASDIALPARAMSA
,
BOOL
);
DWORD
WINAPI
RasSetEntryDialParamsW
(
LPCWSTR
,
LPRASDIALPARAMSW
,
BOOL
);
#define RasSetEntryDialParams WINELIB_NAME_AW(RasSetEntryDialParams)
...
...
@@ -450,16 +485,9 @@ DWORD WINAPI RasSetSubEntryPropertiesW(LPCWSTR,LPCWSTR,DWORD,LPRASSUBENTRYW,DWOR
DWORD
WINAPI
RasValidateEntryNameA
(
LPCSTR
lpszPhonebook
,
LPCSTR
lpszEntry
);
DWORD
WINAPI
RasValidateEntryNameW
(
LPCWSTR
lpszPhonebook
,
LPCWSTR
lpszEntry
);
#define RasValidateEntryName WINELIB_NAME_AW(RasValidateEntryName)
DWORD
WINAPI
RasSetEntryPropertiesA
(
LPCSTR
lpszPhonebook
,
LPCSTR
lpszEntry
,
LPRASENTRYA
lpRasEntry
,
DWORD
dwEntryInfoSize
,
LPBYTE
lpbDeviceInfo
,
DWORD
dwDeviceInfoSize
);
DWORD
WINAPI
RasSetEntryPropertiesW
(
LPCWSTR
lpszPhonebook
,
LPCWSTR
lpszEntry
,
LPRASENTRYW
lpRasEntry
,
DWORD
dwEntryInfoSize
,
LPBYTE
lpbDeviceInfo
,
DWORD
dwDeviceInfoSize
);
DWORD
WINAPI
RasSetEntryPropertiesA
(
LPCSTR
,
LPCSTR
,
LPRASENTRYA
,
DWORD
,
LPBYTE
,
DWORD
);
DWORD
WINAPI
RasSetEntryPropertiesW
(
LPCWSTR
,
LPCWSTR
,
LPRASENTRYW
,
DWORD
,
LPBYTE
,
DWORD
);
#define RasSetEntryProperties WINELIB_NAME_AW(RasSetEntryProperties)
DWORD
WINAPI
RasGetAutodialParamA
(
DWORD
dwKey
,
LPVOID
lpvValue
,
LPDWORD
lpdwcbValue
);
DWORD
WINAPI
RasGetAutodialParamW
(
DWORD
dwKey
,
LPVOID
lpvValue
,
LPDWORD
lpdwcbValue
);
#define RasGetAutodialParam WINELIB_NAME_AW(RasGetAutodialParam)
DWORD
WINAPI
RasSetAutodialEnableA
(
DWORD
dwDialingLocation
,
BOOL
fEnabled
);
DWORD
WINAPI
RasSetAutodialEnableW
(
DWORD
dwDialingLocation
,
BOOL
fEnabled
);
#define RasSetAutodialEnable WINELIB_NAME_AW(RasSetAutodialEnable)
...
...
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