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
aca0a27c
Commit
aca0a27c
authored
Feb 22, 2017
by
Jacek Caban
Committed by
Alexandre Julliard
Feb 22, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
uiautomationcore: Added stub dll.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
e50d49c1
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
138 additions
and
0 deletions
+138
-0
configure
configure
+2
-0
configure.ac
configure.ac
+1
-0
Makefile.in
dlls/uiautomationcore/Makefile.in
+4
-0
uia_main.c
dlls/uiautomationcore/uia_main.c
+38
-0
uiautomationcore.spec
dlls/uiautomationcore/uiautomationcore.spec
+93
-0
No files found.
configure
View file @
aca0a27c
...
...
@@ -1420,6 +1420,7 @@ enable_tdi_sys
enable_traffic
enable_twain_32
enable_ucrtbase
enable_uiautomationcore
enable_unicows
enable_updspapi
enable_url
...
...
@@ -18345,6 +18346,7 @@ wine_fn_config_test dlls/twain_32/tests twain_32_test
wine_fn_config_dll typelib.dll16 enable_win16
wine_fn_config_dll ucrtbase enable_ucrtbase implib
wine_fn_config_test dlls/ucrtbase/tests ucrtbase_test
wine_fn_config_dll uiautomationcore enable_uiautomationcore
wine_fn_config_dll unicows enable_unicows implib
wine_fn_config_dll updspapi enable_updspapi
wine_fn_config_dll url enable_url implib
...
...
configure.ac
View file @
aca0a27c
...
...
@@ -3402,6 +3402,7 @@ WINE_CONFIG_TEST(dlls/twain_32/tests)
WINE_CONFIG_DLL(typelib.dll16,enable_win16)
WINE_CONFIG_DLL(ucrtbase,,[implib])
WINE_CONFIG_TEST(dlls/ucrtbase/tests)
WINE_CONFIG_DLL(uiautomationcore)
WINE_CONFIG_DLL(unicows,,[implib])
WINE_CONFIG_DLL(updspapi)
WINE_CONFIG_DLL(url,,[implib])
...
...
dlls/uiautomationcore/Makefile.in
0 → 100644
View file @
aca0a27c
MODULE
=
uiautomationcore.dll
C_SRCS
=
\
uia_main.c
dlls/uiautomationcore/uia_main.c
0 → 100644
View file @
aca0a27c
/*
* Copyright 2017 Jacek Caban 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 "uiautomationcore.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
uiautomation
);
BOOL
WINAPI
DllMain
(
HINSTANCE
hInstDLL
,
DWORD
fdwReason
,
void
*
lpv
)
{
TRACE
(
"(%p %d %p)
\n
"
,
hInstDLL
,
fdwReason
,
lpv
);
switch
(
fdwReason
)
{
case
DLL_WINE_PREATTACH
:
return
FALSE
;
/* prefer native version */
case
DLL_PROCESS_ATTACH
:
DisableThreadLibraryCalls
(
hInstDLL
);
break
;
}
return
TRUE
;
}
dlls/uiautomationcore/uiautomationcore.spec
0 → 100644
View file @
aca0a27c
@ stub DllCanUnloadNow
@ stub DllGetClassObject
@ stub DllRegisterServer
@ stub DllUnregisterServer
@ stub DockPattern_SetDockPosition
@ stub ExpandCollapsePattern_Collapse
@ stub ExpandCollapsePattern_Expand
@ stub GridPattern_GetItem
@ stub InvokePattern_Invoke
@ stub ItemContainerPattern_FindItemByProperty
@ stub LegacyIAccessiblePattern_DoDefaultAction
@ stub LegacyIAccessiblePattern_GetIAccessible
@ stub LegacyIAccessiblePattern_Select
@ stub LegacyIAccessiblePattern_SetValue
@ stub MultipleViewPattern_GetViewName
@ stub MultipleViewPattern_SetCurrentView
@ stub RangeValuePattern_SetValue
@ stub ScrollItemPattern_ScrollIntoView
@ stub ScrollPattern_Scroll
@ stub ScrollPattern_SetScrollPercent
@ stub SelectionItemPattern_AddToSelection
@ stub SelectionItemPattern_RemoveFromSelection
@ stub SelectionItemPattern_Select
@ stub SynchronizedInputPattern_Cancel
@ stub SynchronizedInputPattern_StartListening
@ stub TextPattern_GetSelection
@ stub TextPattern_GetVisibleRanges
@ stub TextPattern_RangeFromChild
@ stub TextPattern_RangeFromPoint
@ stub TextPattern_get_DocumentRange
@ stub TextPattern_get_SupportedTextSelection
@ stub TextRange_AddToSelection
@ stub TextRange_Clone
@ stub TextRange_Compare
@ stub TextRange_CompareEndpoints
@ stub TextRange_ExpandToEnclosingUnit
@ stub TextRange_FindAttribute
@ stub TextRange_FindText
@ stub TextRange_GetAttributeValue
@ stub TextRange_GetBoundingRectangles
@ stub TextRange_GetChildren
@ stub TextRange_GetEnclosingElement
@ stub TextRange_GetText
@ stub TextRange_Move
@ stub TextRange_MoveEndpointByRange
@ stub TextRange_MoveEndpointByUnit
@ stub TextRange_RemoveFromSelection
@ stub TextRange_ScrollIntoView
@ stub TextRange_Select
@ stub TogglePattern_Toggle
@ stub TransformPattern_Move
@ stub TransformPattern_Resize
@ stub TransformPattern_Rotate
@ stub UiaAddEvent
@ stub UiaClientsAreListening
@ stub UiaEventAddWindow
@ stub UiaEventRemoveWindow
@ stub UiaFind
@ stub UiaGetErrorDescription
@ stub UiaGetPatternProvider
@ stub UiaGetPropertyValue
@ stub UiaGetReservedMixedAttributeValue
@ stub UiaGetReservedNotSupportedValue
@ stub UiaGetRootNode
@ stub UiaGetRuntimeId
@ stub UiaGetUpdatedCache
@ stub UiaHPatternObjectFromVariant
@ stub UiaHTextRangeFromVariant
@ stub UiaHUiaNodeFromVariant
@ stub UiaHasServerSideProvider
@ stub UiaHostProviderFromHwnd
@ stub UiaLookupId
@ stub UiaNavigate
@ stub UiaNodeFromFocus
@ stub UiaNodeFromHandle
@ stub UiaNodeFromPoint
@ stub UiaNodeFromProvider
@ stub UiaNodeRelease
@ stub UiaPatternRelease
@ stub UiaRaiseAsyncContentLoadedEvent
@ stub UiaRaiseAutomationEvent
@ stub UiaRaiseAutomationPropertyChangedEvent
@ stub UiaRaiseStructureChangedEvent
@ stub UiaRegisterProviderCallback
@ stub UiaRemoveEvent
@ stub UiaReturnRawElementProvider
@ stub UiaSetFocus
@ stub UiaTextRangeRelease
@ stub ValuePattern_SetValue
@ stub VirtualizedItemPattern_Realize
@ stub WindowPattern_Close
@ stub WindowPattern_SetWindowVisualState
@ stub WindowPattern_WaitForInputIdle
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