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
dc04cee7
Commit
dc04cee7
authored
May 03, 2010
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rasdlg: Add RasEntryDlgW stub.
parent
e86ed3bf
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
42 additions
and
1 deletion
+42
-1
rasdlg.spec
dlls/rasdlg/rasdlg.spec
+1
-1
rasdlg_main.c
dlls/rasdlg/rasdlg_main.c
+8
-0
Makefile.in
include/Makefile.in
+1
-0
rasdlg.h
include/rasdlg.h
+32
-0
No files found.
dlls/rasdlg/rasdlg.spec
View file @
dc04cee7
...
...
@@ -7,7 +7,7 @@
@ stub RasDialDlgA
@ stub RasDialDlgW
@ stub RasEntryDlgA
@ st
ub RasEntryDlgW
@ st
dcall RasEntryDlgW(wstr wstr ptr)
@ stub RasMonitorDlgA
@ stub RasMonitorDlgW
@ stub RasPhonebookDlgA
...
...
dlls/rasdlg/rasdlg_main.c
View file @
dc04cee7
...
...
@@ -21,6 +21,8 @@
#include "windef.h"
#include "winbase.h"
#include "rasdlg.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
rasdlg
);
...
...
@@ -42,3 +44,9 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
return
TRUE
;
}
BOOL
WINAPI
RasEntryDlgW
(
LPWSTR
phonebook
,
LPWSTR
entry
,
RASENTRYDLGW
*
lpInfo
)
{
FIXME
(
"(%s %s %p) stub
\n
"
,
debugstr_w
(
phonebook
),
debugstr_w
(
entry
),
lpInfo
);
return
FALSE
;
}
include/Makefile.in
View file @
dc04cee7
...
...
@@ -414,6 +414,7 @@ SRCDIR_INCLUDES = \
pshpack4.h
\
pshpack8.h
\
ras.h
\
rasdlg.h
\
raserror.h
\
reason.h
\
regstr.h
\
...
...
include/rasdlg.h
0 → 100644
View file @
dc04cee7
/*
* Copyright (C) 2010 Nikolay Sivov for CodeWeavers
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include <ras.h>
typedef
struct
tagRASENTRYDLGW
{
DWORD
dwSize
;
HWND
hwndOwner
;
DWORD
dwFlags
;
LONG
xDlg
;
LONG
yDlg
;
WCHAR
szEntry
[
RAS_MaxEntryName
+
1
];
DWORD
dwError
;
ULONG_PTR
reserved
;
ULONG_PTR
reserved2
;
}
RASENTRYDLGW
;
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