From b42c9662303d1a33ebe038d1895c08945cdbd40f Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Wed, 5 Mar 2025 19:26:58 +0100 Subject: Cleanup and style update (avoid typedef) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/location-corelocation.m | 41 ++++++++++++----------------------------- 1 file changed, 12 insertions(+), 29 deletions(-) (limited to 'src/location-corelocation.m') diff --git a/src/location-corelocation.m b/src/location-corelocation.m index 10d7acd..87eb0de 100644 --- a/src/location-corelocation.m +++ b/src/location-corelocation.m @@ -16,30 +16,13 @@ Copyright (c) 2014-2017 Jon Lund Steffensen */ - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif +#include "common.h" #import #import -#include "location-corelocation.h" -#include "pipeutils.h" -#include "redshift.h" - -#include -#include - -#ifdef ENABLE_NLS -# include -# define _(s) gettext(s) -#else -# define _(s) s -#endif - -typedef struct { +struct location_state { NSThread *thread; NSLock *lock; int pipe_fd_read; @@ -48,12 +31,12 @@ typedef struct { int error; float latitude; float longitude; -} location_corelocation_state_t; +}; @interface LocationDelegate : NSObject @property (strong, nonatomic) CLLocationManager *locationManager; -@property (nonatomic) location_corelocation_state_t *state; +@property (nonatomic) struct location_state *state; @end @implementation LocationDelegate; @@ -157,7 +140,7 @@ pipe_close_callback( @interface LocationThread : NSThread -@property (nonatomic) location_corelocation_state_t *state; +@property (nonatomic) struct location_state *state; @end @implementation LocationThread; @@ -194,15 +177,15 @@ pipe_close_callback( static int -location_corelocation_init(location_corelocation_state_t **state) +location_corelocation_init(struct location_state **state) { - *state = malloc(sizeof(location_corelocation_state_t)); + *state = malloc(sizeof(struct location_state)); if (*state == NULL) return -1; return 0; } static int -location_corelocation_start(location_corelocation_state_t *state) +location_corelocation_start(struct location_state *state) { state->pipe_fd_read = -1; state->pipe_fd_write = -1; @@ -235,7 +218,7 @@ location_corelocation_start(location_corelocation_state_t *state) } static void -location_corelocation_free(location_corelocation_state_t *state) +location_corelocation_free(struct location_state *state) { if (state->pipe_fd_read != -1) { close(state->pipe_fd_read); @@ -253,21 +236,21 @@ location_corelocation_print_help(FILE *f) static int location_corelocation_set_option( - location_corelocation_state_t *state, const char *key, const char *value) + struct location_state *state, const char *key, const char *value) { fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key); return -1; } static int -location_corelocation_get_fd(location_corelocation_state_t *state) +location_corelocation_get_fd(struct location_state *state) { return state->pipe_fd_read; } static int location_corelocation_handle( - location_corelocation_state_t *state, + struct location_state *state, location_t *location, int *available) { pipeutils_handle_signal(state->pipe_fd_read); -- cgit v1.2.3-70-g09d2