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
d24bc087
Commit
d24bc087
authored
Apr 06, 2007
by
Detlef Riekenberg
Committed by
Alexandre Julliard
Apr 09, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
localui: Add localui.dll with stubs.
parent
c26a816f
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
168 additions
and
0 deletions
+168
-0
Makefile.in
Makefile.in
+2
-0
configure
configure
+3
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/Makefile.in
+1
-0
Makefile.in
dlls/localui/Makefile.in
+13
-0
localui.c
dlls/localui/localui.c
+147
-0
localui.spec
dlls/localui/localui.spec
+1
-0
No files found.
Makefile.in
View file @
d24bc087
...
...
@@ -254,6 +254,7 @@ ALL_MAKEFILES = \
dlls/kernel32/tests/Makefile
\
dlls/localspl/Makefile
\
dlls/localspl/tests/Makefile
\
dlls/localui/Makefile
\
dlls/lz32/Makefile
\
dlls/lz32/tests/Makefile
\
dlls/mapi32/Makefile
\
...
...
@@ -593,6 +594,7 @@ dlls/kernel32/Makefile: dlls/kernel32/Makefile.in dlls/Makedll.rules
dlls/kernel32/tests/Makefile
:
dlls/kernel32/tests/Makefile.in dlls/Maketest.rules
dlls/localspl/Makefile
:
dlls/localspl/Makefile.in dlls/Makedll.rules
dlls/localspl/tests/Makefile
:
dlls/localspl/tests/Makefile.in dlls/Maketest.rules
dlls/localui/Makefile
:
dlls/localui/Makefile.in dlls/Makedll.rules
dlls/lz32/Makefile
:
dlls/lz32/Makefile.in dlls/Makedll.rules
dlls/lz32/tests/Makefile
:
dlls/lz32/tests/Makefile.in dlls/Maketest.rules
dlls/mapi32/Makefile
:
dlls/mapi32/Makefile.in dlls/Makedll.rules
...
...
configure
View file @
d24bc087
...
...
@@ -20396,6 +20396,8 @@ ac_config_files="$ac_config_files dlls/localspl/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/localspl/tests/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/localui/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/lz32/Makefile"
ac_config_files
=
"
$ac_config_files
dlls/lz32/tests/Makefile"
...
...
@@ -21514,6 +21516,7 @@ do
"dlls/kernel32/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/kernel32/tests/Makefile" ;;
"dlls/localspl/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/localspl/Makefile" ;;
"dlls/localspl/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/localspl/tests/Makefile" ;;
"dlls/localui/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/localui/Makefile" ;;
"dlls/lz32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/lz32/Makefile" ;;
"dlls/lz32/tests/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/lz32/tests/Makefile" ;;
"dlls/mapi32/Makefile") CONFIG_FILES="
$CONFIG_FILES
dlls/mapi32/Makefile" ;;
...
...
configure.ac
View file @
d24bc087
...
...
@@ -1588,6 +1588,7 @@ AC_CONFIG_FILES([dlls/kernel32/Makefile])
AC_CONFIG_FILES([dlls/kernel32/tests/Makefile])
AC_CONFIG_FILES([dlls/localspl/Makefile])
AC_CONFIG_FILES([dlls/localspl/tests/Makefile])
AC_CONFIG_FILES([dlls/localui/Makefile])
AC_CONFIG_FILES([dlls/lz32/Makefile])
AC_CONFIG_FILES([dlls/lz32/tests/Makefile])
AC_CONFIG_FILES([dlls/mapi32/Makefile])
...
...
dlls/Makefile.in
View file @
d24bc087
...
...
@@ -87,6 +87,7 @@ BASEDIRS = \
itss
\
kernel32
\
localspl
\
localui
\
lz32
\
mapi32
\
mciavi32
\
...
...
dlls/localui/Makefile.in
0 → 100644
View file @
d24bc087
TOPSRCDIR
=
@top_srcdir@
TOPOBJDIR
=
../..
SRCDIR
=
@srcdir@
VPATH
=
@srcdir@
MODULE
=
localui.dll
IMPORTS
=
kernel32
C_SRCS
=
\
localui.c
@MAKE_DLL_RULES@
@DEPENDENCIES@
# everything below this line is overwritten by make depend
dlls/localui/localui.c
0 → 100644
View file @
d24bc087
/*
* Implementation of the Local Printmonitor User Interface
*
* Copyright 2007 Detlef Riekenberg
*
* 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 <stdarg.h>
#define NONAMELESSUNION
#include "windef.h"
#include "winbase.h"
#include "wingdi.h"
#include "winreg.h"
#include "winspool.h"
#include "ddk/winsplp.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
localui
);
static
HINSTANCE
LOCALUI_hInstance
;
/*****************************************************
* localui_AddPortUI [exported through MONITORUI]
*
* Display a Dialog to add a local Port
*
* PARAMS
* pName [I] Servername or NULL (local Computer)
* hWnd [I] Handle to parent Window for the Dialog-Box or NULL
* pMonitorName[I] Name of the Monitor, that should be used to add a Port or NULL
* ppPortName [O] PTR to PTR of a buffer, that receive the Name of the new Port or NULL
*
* RETURNS
* Success: TRUE
* Failure: FALSE
*
*/
static
BOOL
WINAPI
localui_AddPortUI
(
PCWSTR
pName
,
HWND
hWnd
,
PCWSTR
pMonitorName
,
PWSTR
*
ppPortName
)
{
FIXME
(
"(%s, %p, %s, %p) stub
\n
"
,
debugstr_w
(
pName
),
hWnd
,
debugstr_w
(
pMonitorName
),
ppPortName
);
return
TRUE
;
}
/*****************************************************
* localui_ConfigurePortUI [exported through MONITORUI]
*
* Display the Configuration-Dialog for a specific Port
*
* PARAMS
* pName [I] Servername or NULL (local Computer)
* hWnd [I] Handle to parent Window for the Dialog-Box or NULL
* pPortName [I] Name of the Port, that should be configured
*
* RETURNS
* Success: TRUE
* Failure: FALSE
*
*/
static
BOOL
WINAPI
localui_ConfigurePortUI
(
PCWSTR
pName
,
HWND
hWnd
,
PCWSTR
pPortName
)
{
FIXME
(
"(%s, %p, %s) stub
\n
"
,
debugstr_w
(
pName
),
hWnd
,
debugstr_w
(
pPortName
));
return
TRUE
;
}
/*****************************************************
* localui_DeletePortUI [exported through MONITORUI]
*
* Delete a specific Port
*
* PARAMS
* pName [I] Servername or NULL (local Computer)
* hWnd [I] Handle to parent Window
* pPortName [I] Name of the Port, that should be deleted
*
* RETURNS
* Success: TRUE
* Failure: FALSE
*
*/
static
BOOL
WINAPI
localui_DeletePortUI
(
PCWSTR
pName
,
HWND
hWnd
,
PCWSTR
pPortName
)
{
FIXME
(
"(%s, %p, %s) stub
\n
"
,
debugstr_w
(
pName
),
hWnd
,
debugstr_w
(
pPortName
));
return
TRUE
;
}
/*****************************************************
* InitializePrintMonitorUI (LOCALUI.@)
*
* Initialize the User-Interface for the Local Ports
*
* RETURNS
* Success: Pointer to a MONITORUI Structure
* Failure: NULL
*
*/
PMONITORUI
WINAPI
InitializePrintMonitorUI
(
void
)
{
static
MONITORUI
mymonitorui
=
{
sizeof
(
MONITORUI
),
localui_AddPortUI
,
localui_ConfigurePortUI
,
localui_DeletePortUI
};
TRACE
(
"=> %p
\n
"
,
&
mymonitorui
);
return
&
mymonitorui
;
}
/*****************************************************
* DllMain
*/
BOOL
WINAPI
DllMain
(
HINSTANCE
hinstDLL
,
DWORD
fdwReason
,
LPVOID
lpvReserved
)
{
TRACE
(
"(%p, %d, %p)
\n
"
,
hinstDLL
,
fdwReason
,
lpvReserved
);
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hinstDLL
);
LOCALUI_hInstance
=
hinstDLL
;
break
;
}
return
TRUE
;
}
dlls/localui/localui.spec
0 → 100644
View file @
d24bc087
@ stdcall InitializePrintMonitorUI()
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