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
30ef8778
Commit
30ef8778
authored
Dec 11, 1998
by
Marcus Meissner
Committed by
Alexandre Julliard
Dec 11, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added RasEnumConnections stub.
parent
baae7c49
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
107 additions
and
50 deletions
+107
-50
Makefile.in
Makefile.in
+2
-0
configure
configure
+2
-0
configure.in
configure.in
+1
-0
Makefile.in
dlls/rasapi32/Makefile.in
+15
-0
rasapi.c
dlls/rasapi32/rasapi.c
+18
-0
debug.h
include/debug.h
+49
-48
debugdefs.h
include/debugdefs.h
+3
-1
ras.h
include/ras.h
+15
-0
wintypes.h
include/wintypes.h
+1
-0
rasapi32.spec
relay32/rasapi32.spec
+1
-1
No files found.
Makefile.in
View file @
30ef8778
...
...
@@ -34,6 +34,7 @@ LIBSUBDIRS = \
dlls/msacm32
\
dlls/ntdll
\
dlls/psapi
\
dlls/rasapi32
\
dlls/shell32
\
dlls/winaspi
\
dlls/wnaspi32
\
...
...
@@ -98,6 +99,7 @@ LIBOBJS = \
dlls/msacm32/msacm32.o
\
dlls/ntdll/ntdll.o
\
dlls/psapi/psapi.o
\
dlls/rasapi32/rasapi32.o
\
dlls/shell32/shell32.o
\
dlls/winaspi/winaspi.o
\
dlls/wnaspi32/wnaspi32.o
\
...
...
configure
View file @
30ef8778
...
...
@@ -3752,6 +3752,7 @@ dlls/msacm/Makefile
dlls/msacm32/Makefile
dlls/ntdll/Makefile
dlls/psapi/Makefile
dlls/rasapi32/Makefile
dlls/shell32/Makefile
dlls/winaspi/Makefile
dlls/wnaspi32/Makefile
...
...
@@ -3903,6 +3904,7 @@ dlls/msacm/Makefile
dlls/msacm32/Makefile
dlls/ntdll/Makefile
dlls/psapi/Makefile
dlls/rasapi32/Makefile
dlls/shell32/Makefile
dlls/winaspi/Makefile
dlls/wnaspi32/Makefile
...
...
configure.in
View file @
30ef8778
...
...
@@ -517,6 +517,7 @@ dlls/msacm/Makefile
dlls/msacm32/Makefile
dlls/ntdll/Makefile
dlls/psapi/Makefile
dlls/rasapi32/Makefile
dlls/shell32/Makefile
dlls/winaspi/Makefile
dlls/wnaspi32/Makefile
...
...
dlls/rasapi32/Makefile.in
0 → 100644
View file @
30ef8778
DEFS
=
@DLLFLAGS@
-D__WINE__
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
rasapi32
C_SRCS
=
rasapi.c
all
:
$(MODULE).o
@MAKE_RULES@
### Dependencies:
dlls/rasapi32/rasapi.c
0 → 100644
View file @
30ef8778
/*
* RASAPI32
*
* Copyright 1998 Marcus Meissner
*/
#include "windows.h"
#include "ras.h"
#include "debug.h"
/**************************************************************************
* RasEnumConnections32A [RASAPI32.544]
*/
DWORD
WINAPI
RasEnumConnections32A
(
LPRASCONN32A
rca
,
LPDWORD
x
,
LPDWORD
y
)
{
/* Remote Access Service stuff is done by underlying OS anyway */
FIXME
(
ras
,
"(%p,%p,%p),stub!
\n
"
,
rca
,
x
,
y
);
return
0
;
}
include/debug.h
View file @
30ef8778
...
...
@@ -109,54 +109,55 @@
#define dbch_prop 101
#define dbch_psapi 102
#define dbch_psdrv 103
#define dbch_rebar 104
#define dbch_reg 105
#define dbch_region 106
#define dbch_relay 107
#define dbch_resource 108
#define dbch_s 109
#define dbch_scroll 110
#define dbch_security 111
#define dbch_segment 112
#define dbch_selector 113
#define dbch_sem 114
#define dbch_sendmsg 115
#define dbch_shell 116
#define dbch_shm 117
#define dbch_snoop 118
#define dbch_sound 119
#define dbch_static 120
#define dbch_statusbar 121
#define dbch_stress 122
#define dbch_string 123
#define dbch_syscolor 124
#define dbch_system 125
#define dbch_tab 126
#define dbch_task 127
#define dbch_text 128
#define dbch_thread 129
#define dbch_thunk 130
#define dbch_timer 131
#define dbch_toolbar 132
#define dbch_toolhelp 133
#define dbch_tooltips 134
#define dbch_trackbar 135
#define dbch_treeview 136
#define dbch_tweak 137
#define dbch_uitools 138
#define dbch_updown 139
#define dbch_ver 140
#define dbch_virtual 141
#define dbch_vxd 142
#define dbch_wave 143
#define dbch_win 144
#define dbch_win16drv 145
#define dbch_win32 146
#define dbch_wing 147
#define dbch_winsock 148
#define dbch_wnet 149
#define dbch_x11 150
#define dbch_x11drv 151
#define dbch_ras 104
#define dbch_rebar 105
#define dbch_reg 106
#define dbch_region 107
#define dbch_relay 108
#define dbch_resource 109
#define dbch_s 110
#define dbch_scroll 111
#define dbch_security 112
#define dbch_segment 113
#define dbch_selector 114
#define dbch_sem 115
#define dbch_sendmsg 116
#define dbch_shell 117
#define dbch_shm 118
#define dbch_snoop 119
#define dbch_sound 120
#define dbch_static 121
#define dbch_statusbar 122
#define dbch_stress 123
#define dbch_string 124
#define dbch_syscolor 125
#define dbch_system 126
#define dbch_tab 127
#define dbch_task 128
#define dbch_text 129
#define dbch_thread 130
#define dbch_thunk 131
#define dbch_timer 132
#define dbch_toolbar 133
#define dbch_toolhelp 134
#define dbch_tooltips 135
#define dbch_trackbar 136
#define dbch_treeview 137
#define dbch_tweak 138
#define dbch_uitools 139
#define dbch_updown 140
#define dbch_ver 141
#define dbch_virtual 142
#define dbch_vxd 143
#define dbch_wave 144
#define dbch_win 145
#define dbch_win16drv 146
#define dbch_win32 147
#define dbch_wing 148
#define dbch_winsock 149
#define dbch_wnet 150
#define dbch_x11 151
#define dbch_x11drv 152
/* Definitions for classes identifiers */
#define dbcl_fixme 0
#define dbcl_err 1
...
...
include/debugdefs.h
View file @
30ef8778
...
...
@@ -4,7 +4,7 @@
#include "debugtools.h"
#endif
#define DEBUG_CHANNEL_COUNT 15
2
#define DEBUG_CHANNEL_COUNT 15
3
#ifdef DEBUG_RUNTIME
short
debug_msg_enabled
[][
DEBUG_CLASS_COUNT
]
=
{
{
1
,
1
,
0
,
0
},
...
...
@@ -159,6 +159,7 @@ short debug_msg_enabled[][DEBUG_CLASS_COUNT] = {
{
1
,
1
,
0
,
0
},
{
1
,
1
,
0
,
0
},
{
1
,
1
,
0
,
0
},
{
1
,
1
,
0
,
0
},
};
const
char
*
debug_ch_name
[]
=
{
"1"
,
...
...
@@ -265,6 +266,7 @@ const char* debug_ch_name[] = {
"prop"
,
"psapi"
,
"psdrv"
,
"ras"
,
"rebar"
,
"reg"
,
"region"
,
...
...
include/ras.h
0 → 100644
View file @
30ef8778
#ifndef __WINE_RAS_H
#define __WINE_RAS_H
#include "wintypes.h"
#define RAS_MaxEntryName 256
typedef
struct
tagRASCONN32A
{
DWORD
dwSize
;
HRASCONN32
hRasConn
;
CHAR
szEntryName
[
RAS_MaxEntryName
+
1
];
}
RASCONN32A
,
*
LPRASCONN32A
;
DWORD
WINAPI
RasEnumConnections32A
(
LPRASCONN32A
rc
,
LPDWORD
x
,
LPDWORD
y
);
#endif
include/wintypes.h
View file @
30ef8778
...
...
@@ -192,6 +192,7 @@ DECLARE_HANDLE(HDESK);
DECLARE_HANDLE
(
HWND
);
DECLARE_HANDLE
(
HKL
);
DECLARE_HANDLE
(
HIC
);
DECLARE_HANDLE
(
HRASCONN
);
#undef DECLARE_HANDLE
/* Callback function pointers types */
...
...
relay32/rasapi32.spec
View file @
30ef8778
...
...
@@ -45,7 +45,7 @@ type win32
541 stub RasDialW
542 stub RasEditPhonebookEntryA
543 stub RasEditPhonebookEntryW
544 st
ub RasEnumConnections
A
544 st
dcall RasEnumConnectionsA(ptr ptr ptr) RasEnumConnections32
A
545 stub RasEnumConnectionsW
546 stub RasEnumEntriesA
547 stub RasEnumEntriesW
...
...
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