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
54e38a95
Commit
54e38a95
authored
Jul 07, 2023
by
Fabian Maurer
Committed by
Alexandre Julliard
Jul 10, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
geolocation: Rename from windows.devices.geolocation.geolocator.
parent
26227450
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
10 additions
and
10 deletions
+10
-10
configure
configure
+3
-3
configure.ac
configure.ac
+2
-2
Makefile.in
dlls/geolocation/Makefile.in
+1
-1
classes.idl
dlls/geolocation/classes.idl
+1
-1
geolocation.spec
dlls/geolocation/geolocation.spec
+0
-0
main.c
dlls/geolocation/main.c
+0
-0
private.h
dlls/geolocation/private.h
+2
-2
Makefile.in
dlls/geolocation/tests/Makefile.in
+1
-1
geolocator.c
dlls/geolocation/tests/geolocator.c
+0
-0
No files found.
configure
View file @
54e38a95
...
...
@@ -1141,6 +1141,7 @@ enable_gameux
enable_gamingtcui
enable_gdi32
enable_gdiplus
enable_geolocation
enable_glu32
enable_gphoto2_ds
enable_gpkcsp
...
...
@@ -1457,7 +1458,6 @@ enable_wimgapi
enable_win32u
enable_windows_devices_bluetooth
enable_windows_devices_enumeration
enable_windows_devices_geolocation_geolocator
enable_windows_gaming_input
enable_windows_gaming_ui_gamebar
enable_windows_globalization
...
...
@@ -21436,6 +21436,8 @@ wine_fn_config_makefile dlls/gdi32 enable_gdi32
wine_fn_config_makefile dlls/gdi32/tests enable_tests
wine_fn_config_makefile dlls/gdiplus enable_gdiplus
wine_fn_config_makefile dlls/gdiplus/tests enable_tests
wine_fn_config_makefile dlls/geolocation enable_geolocation
wine_fn_config_makefile dlls/geolocation/tests enable_tests
wine_fn_config_makefile dlls/glu32 enable_glu32
wine_fn_config_makefile dlls/gphoto2.ds enable_gphoto2_ds
wine_fn_config_makefile dlls/gpkcsp enable_gpkcsp
...
...
@@ -21945,8 +21947,6 @@ wine_fn_config_makefile dlls/windows.devices.bluetooth enable_windows_devices_bl
wine_fn_config_makefile dlls/windows.devices.bluetooth/tests enable_tests
wine_fn_config_makefile dlls/windows.devices.enumeration enable_windows_devices_enumeration
wine_fn_config_makefile dlls/windows.devices.enumeration/tests enable_tests
wine_fn_config_makefile dlls/windows.devices.geolocation.geolocator enable_windows_devices_geolocation_geolocator
wine_fn_config_makefile dlls/windows.devices.geolocation.geolocator/tests enable_tests
wine_fn_config_makefile dlls/windows.gaming.input enable_windows_gaming_input
wine_fn_config_makefile dlls/windows.gaming.input/tests enable_tests
wine_fn_config_makefile dlls/windows.gaming.ui.gamebar enable_windows_gaming_ui_gamebar
...
...
configure.ac
View file @
54e38a95
...
...
@@ -2631,6 +2631,8 @@ WINE_CONFIG_MAKEFILE(dlls/gdi32)
WINE_CONFIG_MAKEFILE(dlls/gdi32/tests)
WINE_CONFIG_MAKEFILE(dlls/gdiplus)
WINE_CONFIG_MAKEFILE(dlls/gdiplus/tests)
WINE_CONFIG_MAKEFILE(dlls/geolocation)
WINE_CONFIG_MAKEFILE(dlls/geolocation/tests)
WINE_CONFIG_MAKEFILE(dlls/glu32)
WINE_CONFIG_MAKEFILE(dlls/gphoto2.ds)
WINE_CONFIG_MAKEFILE(dlls/gpkcsp)
...
...
@@ -3140,8 +3142,6 @@ WINE_CONFIG_MAKEFILE(dlls/windows.devices.bluetooth)
WINE_CONFIG_MAKEFILE(dlls/windows.devices.bluetooth/tests)
WINE_CONFIG_MAKEFILE(dlls/windows.devices.enumeration)
WINE_CONFIG_MAKEFILE(dlls/windows.devices.enumeration/tests)
WINE_CONFIG_MAKEFILE(dlls/windows.devices.geolocation.geolocator)
WINE_CONFIG_MAKEFILE(dlls/windows.devices.geolocation.geolocator/tests)
WINE_CONFIG_MAKEFILE(dlls/windows.gaming.input)
WINE_CONFIG_MAKEFILE(dlls/windows.gaming.input/tests)
WINE_CONFIG_MAKEFILE(dlls/windows.gaming.ui.gamebar)
...
...
dlls/
windows.devices.geolocation.geolocator
/Makefile.in
→
dlls/
geolocation
/Makefile.in
View file @
54e38a95
MODULE
=
windows.devices.geolocation.geolocator
.dll
MODULE
=
geolocation
.dll
IMPORTS
=
combase uuid
C_SRCS
=
\
...
...
dlls/
windows.devices.geolocation.geolocator
/classes.idl
→
dlls/
geolocation
/classes.idl
View file @
54e38a95
/*
Runtime
Classes
for
windows
.
devices.geolocation.geolocator
.dll
/*
Runtime
Classes
for
geolocation
.
dll
*
*
Copyright
2023
Fabian
Maurer
*
...
...
dlls/
windows.devices.geolocation.geolocator/windows.devices.geolocation.geolocator
.spec
→
dlls/
geolocation/geolocation
.spec
View file @
54e38a95
File moved
dlls/
windows.devices.geolocation.geolocator
/main.c
→
dlls/
geolocation
/main.c
View file @
54e38a95
File moved
dlls/
windows.devices.geolocation.geolocator
/private.h
→
dlls/
geolocation
/private.h
View file @
54e38a95
...
...
@@ -17,8 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#ifndef __WINE_
WINDOWS_DEVICES_GEOLOCATION_GEOLOCATOR
_PRIVATE_H
#define __WINE_
WINDOWS_DEVICES_GEOLOCATION_GEOLOCATOR
_PRIVATE_H
#ifndef __WINE_
GEOLOCATION
_PRIVATE_H
#define __WINE_
GEOLOCATION
_PRIVATE_H
#include <stdarg.h>
...
...
dlls/
windows.devices.geolocation.geolocator
/tests/Makefile.in
→
dlls/
geolocation
/tests/Makefile.in
View file @
54e38a95
TESTDLL
=
windows.devices.geolocation.geolocator
.dll
TESTDLL
=
geolocation
.dll
IMPORTS
=
combase uuid
C_SRCS
=
\
...
...
dlls/
windows.devices.geolocation.geolocator
/tests/geolocator.c
→
dlls/
geolocation
/tests/geolocator.c
View file @
54e38a95
File moved
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