[gupnp] all: Clean-up include guards



commit 1d80a13e4e67b7245aeaf59034a9afe9881ff16f
Author: Jens Georg <mail jensge org>
Date:   Fri Nov 2 11:34:52 2018 +0100

    all: Clean-up include guards
    
    Things starting with __ are considered libc internal etc.

 libgupnp/gena-protocol.h                       | 6 +++---
 libgupnp/gupnp-acl-private.h                   | 4 ++--
 libgupnp/gupnp-acl.h                           | 6 +++---
 libgupnp/gupnp-connman-manager.h               | 6 +++---
 libgupnp/gupnp-context-manager.h               | 6 +++---
 libgupnp/gupnp-context-private.h               | 6 +++---
 libgupnp/gupnp-context.h                       | 6 +++---
 libgupnp/gupnp-control-point.h                 | 6 +++---
 libgupnp/gupnp-device-info-private.h           | 6 +++---
 libgupnp/gupnp-device-info.h                   | 6 +++---
 libgupnp/gupnp-device-proxy.h                  | 6 +++---
 libgupnp/gupnp-device.h                        | 6 +++---
 libgupnp/gupnp-error-private.h                 | 6 +++---
 libgupnp/gupnp-error.h                         | 6 +++---
 libgupnp/gupnp-linux-context-manager.h         | 6 +++---
 libgupnp/gupnp-network-manager.h               | 6 +++---
 libgupnp/gupnp-resource-factory-private.h      | 6 +++---
 libgupnp/gupnp-resource-factory.h              | 6 +++---
 libgupnp/gupnp-root-device.h                   | 6 +++---
 libgupnp/gupnp-service-info.h                  | 6 +++---
 libgupnp/gupnp-service-introspection-private.h | 6 +++---
 libgupnp/gupnp-service-introspection.h         | 6 +++---
 libgupnp/gupnp-service-proxy.h                 | 6 +++---
 libgupnp/gupnp-service.h                       | 6 +++---
 libgupnp/gupnp-simple-context-manager.h        | 6 +++---
 libgupnp/gupnp-types-private.h                 | 6 +++---
 libgupnp/gupnp-types.h                         | 6 +++---
 libgupnp/gupnp-unix-context-manager.h          | 6 +++---
 libgupnp/gupnp-uuid.h                          | 6 +++---
 libgupnp/gupnp-white-list.h                    | 6 +++---
 libgupnp/gupnp-windows-context-manager.h       | 6 +++---
 libgupnp/gupnp-xml-doc.h                       | 6 +++---
 libgupnp/gvalue-util.h                         | 6 +++---
 libgupnp/http-headers.h                        | 6 +++---
 libgupnp/xml-util.h                            | 6 +++---
 35 files changed, 104 insertions(+), 104 deletions(-)
---
diff --git a/libgupnp/gena-protocol.h b/libgupnp/gena-protocol.h
index adcb114..a299944 100644
--- a/libgupnp/gena-protocol.h
+++ b/libgupnp/gena-protocol.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GENA_PROTOCOL_H__
-#define __GENA_PROTOCOL_H__
+#ifndef GUPNP_GENA_PROTOCOL_H
+#define GUPNP_GENA_PROTOCOL_H
 
 G_BEGIN_DECLS
 
@@ -34,4 +34,4 @@ G_BEGIN_DECLS
 
 G_END_DECLS
 
-#endif /* __GENA_PROTOCOL_H__ */
+#endif /* GUPNP_GENA_PROTOCOL_H */
diff --git a/libgupnp/gupnp-acl-private.h b/libgupnp/gupnp-acl-private.h
index 69b060d..32c1334 100644
--- a/libgupnp/gupnp-acl-private.h
+++ b/libgupnp/gupnp-acl-private.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_ACL_PRIVATE_H__
-#define __GUPNP_ACL_PRIVATE_H__
+#ifndef GUPNP_ACL_PRIVATE_H
+#define GUPNP_ACL_PRIVATE_H
 
 #include <glib.h>
 #include <glib-object.h>
diff --git a/libgupnp/gupnp-acl.h b/libgupnp/gupnp-acl.h
index 2d639b2..329caf0 100644
--- a/libgupnp/gupnp-acl.h
+++ b/libgupnp/gupnp-acl.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_ACL_H__
-#define __GUPNP_ACL_H__
+#ifndef GUPNP_ACL_H
+#define GUPNP_ACL_H
 
 #include <glib.h>
 #include <glib-object.h>
@@ -135,4 +135,4 @@ gupnp_acl_can_sync (GUPnPAcl *self);
 
 G_END_DECLS
 
-#endif
+#endif /* GUPNP_ACL_H */
diff --git a/libgupnp/gupnp-connman-manager.h b/libgupnp/gupnp-connman-manager.h
index 976668f..8ef017b 100644
--- a/libgupnp/gupnp-connman-manager.h
+++ b/libgupnp/gupnp-connman-manager.h
@@ -22,8 +22,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_CONNMAN_MANAGER_H__
-#define __GUPNP_CONNMAN_MANAGER_H__
+#ifndef GUPNP_CONNMAN_MANAGER_H
+#define GUPNP_CONNMAN_MANAGER_H
 
 #include "gupnp-context-manager.h"
 
@@ -71,4 +71,4 @@ gupnp_connman_manager_is_available      (void);
 
 G_END_DECLS
 
-#endif /* __GUPNP_CONNMAN_MANAGER_H__ */
+#endif /* GUPNP_CONNMAN_MANAGER_H */
diff --git a/libgupnp/gupnp-context-manager.h b/libgupnp/gupnp-context-manager.h
index 3356dc8..f470046 100644
--- a/libgupnp/gupnp-context-manager.h
+++ b/libgupnp/gupnp-context-manager.h
@@ -21,8 +21,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_CONTEXT_MANAGER_H__
-#define __GUPNP_CONTEXT_MANAGER_H__
+#ifndef GUPNP_CONTEXT_MANAGER_H
+#define GUPNP_CONTEXT_MANAGER_H
 
 #include <glib.h>
 #include "gupnp-context.h"
@@ -107,4 +107,4 @@ gupnp_context_manager_get_white_list   (GUPnPContextManager *manager);
 
 G_END_DECLS
 
-#endif /* __GUPNP_CONTEXT_MANAGER_H__ */
+#endif /* GUPNP_CONTEXT_MANAGER_H */
diff --git a/libgupnp/gupnp-context-private.h b/libgupnp/gupnp-context-private.h
index c088563..513d774 100644
--- a/libgupnp/gupnp-context-private.h
+++ b/libgupnp/gupnp-context-private.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_CONTEXT_PRIVATE_H__
-#define __GUPNP_CONTEXT_PRIVATE_H__
+#ifndef GUPNP_CONTEXT_PRIVATE_H
+#define GUPNP_CONTEXT_PRIVATE_H
 
 #include <libsoup/soup.h>
 
@@ -38,4 +38,4 @@ _gupnp_context_add_server_handler_with_data (GUPnPContext *context,
 
 G_END_DECLS
 
-#endif /* __GUPNP_CONTEXT_PRIVATE_H__ */
+#endif /* GUPNP_CONTEXT_PRIVATE_H */
diff --git a/libgupnp/gupnp-context.h b/libgupnp/gupnp-context.h
index 08a0f57..b5d7d24 100644
--- a/libgupnp/gupnp-context.h
+++ b/libgupnp/gupnp-context.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_CONTEXT_H__
-#define __GUPNP_CONTEXT_H__
+#ifndef GUPNP_CONTEXT_H
+#define GUPNP_CONTEXT_H
 
 #include <libgssdp/gssdp-client.h>
 #include <libsoup/soup-server.h>
@@ -143,4 +143,4 @@ gupnp_context_remove_server_handler    (GUPnPContext *context,
                                         const char *path);
 G_END_DECLS
 
-#endif /* __GUPNP_CONTEXT_H__ */
+#endif /* GUPNP_CONTEXT_H */
diff --git a/libgupnp/gupnp-control-point.h b/libgupnp/gupnp-control-point.h
index 2cb3911..62918ae 100644
--- a/libgupnp/gupnp-control-point.h
+++ b/libgupnp/gupnp-control-point.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_CONTROL_POINT_H__
-#define __GUPNP_CONTROL_POINT_H__
+#ifndef GUPNP_CONTROL_POINT_H
+#define GUPNP_CONTROL_POINT_H
 
 #include <libgssdp/gssdp-resource-browser.h>
 
@@ -116,4 +116,4 @@ gupnp_control_point_get_resource_factory (GUPnPControlPoint    *control_point);
 
 G_END_DECLS
 
-#endif /* __GUPNP_CONTROL_POINT_H__ */
+#endif /* GUPNP_CONTROL_POINT_H */
diff --git a/libgupnp/gupnp-device-info-private.h b/libgupnp/gupnp-device-info-private.h
index e71005a..442d42e 100644
--- a/libgupnp/gupnp-device-info-private.h
+++ b/libgupnp/gupnp-device-info-private.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_DEVICE_INFO_PRIVATE_H__
-#define __GUPNP_DEVICE_INFO_PRIVATE_H__
+#ifndef GUPNP_DEVICE_INFO_PRIVATE_H
+#define GUPNP_DEVICE_INFO_PRIVATE_H
 
 #include "gupnp-device-info.h"
 #include "gupnp-xml-doc.h"
@@ -28,4 +28,4 @@
 G_GNUC_INTERNAL GUPnPXMLDoc *
 _gupnp_device_info_get_document (GUPnPDeviceInfo *info);
 
-#endif /* __GUPNP_DEVICE_INFO_PRIVATE_H__ */
+#endif /* GUPNP_DEVICE_INFO_PRIVATE_H */
diff --git a/libgupnp/gupnp-device-info.h b/libgupnp/gupnp-device-info.h
index 0a65184..ad99ff0 100644
--- a/libgupnp/gupnp-device-info.h
+++ b/libgupnp/gupnp-device-info.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_DEVICE_INFO_H__
-#define __GUPNP_DEVICE_INFO_H__
+#ifndef GUPNP_DEVICE_INFO_H
+#define GUPNP_DEVICE_INFO_H
 
 #include <glib-object.h>
 #include <libxml/tree.h>
@@ -185,4 +185,4 @@ gupnp_device_info_get_resource_factory   (GUPnPDeviceInfo *device_info);
 
 G_END_DECLS
 
-#endif /* __GUPNP_DEVICE_INFO_H__ */
+#endif /* GUPNP_DEVICE_INFO_H */
diff --git a/libgupnp/gupnp-device-proxy.h b/libgupnp/gupnp-device-proxy.h
index 5b96567..cada41e 100644
--- a/libgupnp/gupnp-device-proxy.h
+++ b/libgupnp/gupnp-device-proxy.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_DEVICE_PROXY_H__
-#define __GUPNP_DEVICE_PROXY_H__
+#ifndef GUPNP_DEVICE_PROXY_H
+#define GUPNP_DEVICE_PROXY_H
 
 #include "gupnp-device-info.h"
 
@@ -78,4 +78,4 @@ struct _GUPnPDeviceProxyClass {
 
 G_END_DECLS
 
-#endif /* __GUPNP_DEVICE_PROXY_H__ */
+#endif /* GUPNP_DEVICE_PROXY_H */
diff --git a/libgupnp/gupnp-device.h b/libgupnp/gupnp-device.h
index 106b164..5900cfb 100644
--- a/libgupnp/gupnp-device.h
+++ b/libgupnp/gupnp-device.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_DEVICE_H__
-#define __GUPNP_DEVICE_H__
+#ifndef GUPNP_DEVICE_H
+#define GUPNP_DEVICE_H
 
 #include "gupnp-device-info.h"
 
@@ -78,4 +78,4 @@ struct _GUPnPDeviceClass {
 
 G_END_DECLS
 
-#endif /* __GUPNP_DEVICE_H__ */
+#endif /* GUPNP_DEVICE_H */
diff --git a/libgupnp/gupnp-error-private.h b/libgupnp/gupnp-error-private.h
index 7ab1e7d..70aac8e 100644
--- a/libgupnp/gupnp-error-private.h
+++ b/libgupnp/gupnp-error-private.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_ERROR_PRIVATE_H__
-#define __GUPNP_ERROR_PRIVATE_H__
+#ifndef GUPNP_ERROR_PRIVATE_H
+#define GUPNP_ERROR_PRIVATE_H
 
 #include <libsoup/soup-message.h>
 
@@ -35,4 +35,4 @@ _gupnp_error_new_server_error (SoupMessage *msg);
 
 G_END_DECLS
 
-#endif /* __GUPNP_ERROR_PRIVATE_H__ */
+#endif /* GUPNP_ERROR_PRIVATE_H */
diff --git a/libgupnp/gupnp-error.h b/libgupnp/gupnp-error.h
index 3816492..86d0110 100644
--- a/libgupnp/gupnp-error.h
+++ b/libgupnp/gupnp-error.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_ERROR_H__
-#define __GUPNP_ERROR_H__
+#ifndef GUPNP_ERROR_H
+#define GUPNP_ERROR_H
 
 #include <glib.h>
 
@@ -142,4 +142,4 @@ typedef enum {
 
 G_END_DECLS
 
-#endif /* __GUPNP_ERROR_H__ */
+#endif /* GUPNP_ERROR_H */
diff --git a/libgupnp/gupnp-linux-context-manager.h b/libgupnp/gupnp-linux-context-manager.h
index 0f6658e..fb8ada8 100644
--- a/libgupnp/gupnp-linux-context-manager.h
+++ b/libgupnp/gupnp-linux-context-manager.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_LINUX_CONTEXT_MANAGER_H__
-#define __GUPNP_LINUX_CONTEXT_MANAGER_H__
+#ifndef GUPNP_LINUX_CONTEXT_MANAGER_H
+#define GUPNP_LINUX_CONTEXT_MANAGER_H
 
 #include <glib.h>
 #include <glib-object.h>
@@ -75,4 +75,4 @@ G_GNUC_INTERNAL gboolean gupnp_linux_context_manager_is_available (void);
 
 G_END_DECLS
 
-#endif /* __GUPNP_LINUX_CONTEXT_MANAGER_H__ */
+#endif /* GUPNP_LINUX_CONTEXT_MANAGER_H */
diff --git a/libgupnp/gupnp-network-manager.h b/libgupnp/gupnp-network-manager.h
index 8b87707..9c9550d 100644
--- a/libgupnp/gupnp-network-manager.h
+++ b/libgupnp/gupnp-network-manager.h
@@ -20,8 +20,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_NETWORK_MANAGER_H__
-#define __GUPNP_NETWORK_MANAGER_H__
+#ifndef GUPNP_NETWORK_MANAGER_H
+#define GUPNP_NETWORK_MANAGER_H
 
 #include "gupnp-context-manager.h"
 
@@ -74,4 +74,4 @@ gupnp_network_manager_is_available                      (void);
 
 G_END_DECLS
 
-#endif /* __GUPNP_NETWORK_MANAGER_H__ */
+#endif /* GUPNP_NETWORK_MANAGER_H */
diff --git a/libgupnp/gupnp-resource-factory-private.h b/libgupnp/gupnp-resource-factory-private.h
index bb01b0c..60bd1f3 100644
--- a/libgupnp/gupnp-resource-factory-private.h
+++ b/libgupnp/gupnp-resource-factory-private.h
@@ -21,8 +21,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_RESOURCE_FACTORY_PRIVATE_H__
-#define __GUPNP_RESOURCE_FACTORY_PRIVATE_H__
+#ifndef GUPNP_RESOURCE_FACTORY_PRIVATE_H
+#define GUPNP_RESOURCE_FACTORY_PRIVATE_H
 
 #include "xml-util.h"
 #include "gupnp-device.h"
@@ -75,4 +75,4 @@ gupnp_resource_factory_create_service (GUPnPResourceFactory *factory,
 
 G_END_DECLS
 
-#endif /* __GUPNP_RESOURCE_FACTORY_PRIVATE_H__ */
+#endif /* GUPNP_RESOURCE_FACTORY_PRIVATE_H */
diff --git a/libgupnp/gupnp-resource-factory.h b/libgupnp/gupnp-resource-factory.h
index 1c76f27..a01447e 100644
--- a/libgupnp/gupnp-resource-factory.h
+++ b/libgupnp/gupnp-resource-factory.h
@@ -21,8 +21,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_RESOURCE_FACTORY_H__
-#define __GUPNP_RESOURCE_FACTORY_H__
+#ifndef GUPNP_RESOURCE_FACTORY_H
+#define GUPNP_RESOURCE_FACTORY_H
 
 #include <glib-object.h>
 
@@ -108,4 +108,4 @@ gupnp_resource_factory_unregister_resource_proxy_type
 
 G_END_DECLS
 
-#endif /* __GUPNP_RESOURCE_FACTORY_H__ */
+#endif /* GUPNP_RESOURCE_FACTORY_H */
diff --git a/libgupnp/gupnp-root-device.h b/libgupnp/gupnp-root-device.h
index 54dd599..5891056 100644
--- a/libgupnp/gupnp-root-device.h
+++ b/libgupnp/gupnp-root-device.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_ROOT_DEVICE_H__
-#define __GUPNP_ROOT_DEVICE_H__
+#ifndef GUPNP_ROOT_DEVICE_H
+#define GUPNP_ROOT_DEVICE_H
 
 #include <libxml/tree.h>
 
@@ -122,4 +122,4 @@ gupnp_root_device_get_ssdp_resource_group
 
 G_END_DECLS
 
-#endif /* __GUPNP_ROOT_DEVICE_H__ */
+#endif /* GUPNP_ROOT_DEVICE_H */
diff --git a/libgupnp/gupnp-service-info.h b/libgupnp/gupnp-service-info.h
index 62accad..023df1b 100644
--- a/libgupnp/gupnp-service-info.h
+++ b/libgupnp/gupnp-service-info.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_SERVICE_INFO_H__
-#define __GUPNP_SERVICE_INFO_H__
+#ifndef GUPNP_SERVICE_INFO_H
+#define GUPNP_SERVICE_INFO_H
 
 #include <glib-object.h>
 #include <libxml/tree.h>
@@ -138,4 +138,4 @@ gupnp_service_info_get_introspection_async_full
 
 G_END_DECLS
 
-#endif /* __GUPNP_SERVICE_INFO_H__ */
+#endif /* GUPNP_SERVICE_INFO_H */
diff --git a/libgupnp/gupnp-service-introspection-private.h b/libgupnp/gupnp-service-introspection-private.h
index 9a57a73..c84f095 100644
--- a/libgupnp/gupnp-service-introspection-private.h
+++ b/libgupnp/gupnp-service-introspection-private.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_SERVICE_INTROSPECTION_PRIVATE_H__
-#define __GUPNP_SERVICE_INTROSPECTION_PRIVATE_H__
+#ifndef GUPNP_SERVICE_INTROSPECTION_PRIVATE_H
+#define GUPNP_SERVICE_INTROSPECTION_PRIVATE_H
 
 #include <libxml/tree.h>
 
@@ -29,4 +29,4 @@
 G_GNUC_INTERNAL GUPnPServiceIntrospection *
 gupnp_service_introspection_new (xmlDoc *scpd);
 
-#endif /* __GUPNP_SERVICE_INTROSPECTION_PRIVATE_H__ */
+#endif /* GUPNP_SERVICE_INTROSPECTION_PRIVATE_H */
diff --git a/libgupnp/gupnp-service-introspection.h b/libgupnp/gupnp-service-introspection.h
index 54d9e90..556df63 100644
--- a/libgupnp/gupnp-service-introspection.h
+++ b/libgupnp/gupnp-service-introspection.h
@@ -21,8 +21,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_SERVICE_INTROSPECTION_H__
-#define __GUPNP_SERVICE_INTROSPECTION_H__
+#ifndef GUPNP_SERVICE_INTROSPECTION_H
+#define GUPNP_SERVICE_INTROSPECTION_H
 
 #include <glib-object.h>
 
@@ -178,4 +178,4 @@ gupnp_service_introspection_get_state_variable
 
 G_END_DECLS
 
-#endif /* __GUPNP_SERVICE_INTROSPECTION_H__ */
+#endif /* GUPNP_SERVICE_INTROSPECTION_H */
diff --git a/libgupnp/gupnp-service-proxy.h b/libgupnp/gupnp-service-proxy.h
index 0643cd4..fd04ed6 100644
--- a/libgupnp/gupnp-service-proxy.h
+++ b/libgupnp/gupnp-service-proxy.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_SERVICE_PROXY_H__
-#define __GUPNP_SERVICE_PROXY_H__
+#ifndef GUPNP_SERVICE_PROXY_H
+#define GUPNP_SERVICE_PROXY_H
 
 #include "gupnp-error.h"
 #include "gupnp-service-info.h"
@@ -242,4 +242,4 @@ gupnp_service_proxy_get_subscribed (GUPnPServiceProxy              *proxy);
 
 G_END_DECLS
 
-#endif /* __GUPNP_SERVICE_PROXY_H__ */
+#endif /* GUPNP_SERVICE_PROXY_H */
diff --git a/libgupnp/gupnp-service.h b/libgupnp/gupnp-service.h
index ae73c89..be50af0 100644
--- a/libgupnp/gupnp-service.h
+++ b/libgupnp/gupnp-service.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_SERVICE_H__
-#define __GUPNP_SERVICE_H__
+#ifndef GUPNP_SERVICE_H
+#define GUPNP_SERVICE_H
 
 #include <stdarg.h>
 
@@ -191,4 +191,4 @@ gupnp_service_signals_autoconnect (GUPnPService *service,
 
 G_END_DECLS
 
-#endif /* __GUPNP_SERVICE_H__ */
+#endif /* GUPNP_SERVICE_H */
diff --git a/libgupnp/gupnp-simple-context-manager.h b/libgupnp/gupnp-simple-context-manager.h
index dc8804b..8674d18 100644
--- a/libgupnp/gupnp-simple-context-manager.h
+++ b/libgupnp/gupnp-simple-context-manager.h
@@ -22,8 +22,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_SIMPLE_CONTEXT_MANAGER_H__
-#define __GUPNP_SIMPLE_CONTEXT_MANAGER_H__
+#ifndef GUPNP_SIMPLE_CONTEXT_MANAGER_H
+#define GUPNP_SIMPLE_CONTEXT_MANAGER_H
 
 #include "gupnp-context-manager.h"
 
@@ -75,4 +75,4 @@ typedef struct {
 
 G_END_DECLS
 
-#endif /* __GUPNP_SIMPLE_CONTEXT_MANAGER_H__ */
+#endif /* GUPNP_SIMPLE_CONTEXT_MANAGER_H */
diff --git a/libgupnp/gupnp-types-private.h b/libgupnp/gupnp-types-private.h
index 4ad39f7..d407f73 100644
--- a/libgupnp/gupnp-types-private.h
+++ b/libgupnp/gupnp-types-private.h
@@ -20,8 +20,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_TYPES_PRIVATE_H__
-#define __GUPNP_TYPES_PRIVATE_H__
+#ifndef GUPNP_TYPES_PRIVATE_H
+#define GUPNP_TYPES_PRIVATE_H
 
 #include <glib-object.h>
 
@@ -32,4 +32,4 @@ gupnp_data_type_to_gtype (const char *data_type);
 
 G_END_DECLS
 
-#endif /* __GUPNP_TYPES_PRIVATE_H__ */
+#endif /* GUPNP_TYPES_PRIVATE_H */
diff --git a/libgupnp/gupnp-types.h b/libgupnp/gupnp-types.h
index dd9b2b1..b35ea23 100644
--- a/libgupnp/gupnp-types.h
+++ b/libgupnp/gupnp-types.h
@@ -20,8 +20,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_TYPES_H__
-#define __GUPNP_TYPES_H__
+#ifndef GUPNP_TYPES_H
+#define GUPNP_TYPES_H
 
 #include <glib-object.h>
 
@@ -126,4 +126,4 @@ gupnp_uuid_get_type (void) G_GNUC_CONST; /* string */
 
 G_END_DECLS
 
-#endif /* __GUPNP_TYPES_H__ */
+#endif /* GUPNP_TYPES_H */
diff --git a/libgupnp/gupnp-unix-context-manager.h b/libgupnp/gupnp-unix-context-manager.h
index a12decd..a19f305 100644
--- a/libgupnp/gupnp-unix-context-manager.h
+++ b/libgupnp/gupnp-unix-context-manager.h
@@ -21,8 +21,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_UNIX_CONTEXT_MANAGER_H__
-#define __GUPNP_UNIX_CONTEXT_MANAGER_H__
+#ifndef GUPNP_UNIX_CONTEXT_MANAGER_H
+#define GUPNP_UNIX_CONTEXT_MANAGER_H
 
 #include "gupnp-simple-context-manager.h"
 
@@ -70,4 +70,4 @@ typedef struct {
 
 G_END_DECLS
 
-#endif /* __GUPNP_UNIX_CONTEXT_MANAGER_H__ */
+#endif /* GUPNP_UNIX_CONTEXT_MANAGER_H */
diff --git a/libgupnp/gupnp-uuid.h b/libgupnp/gupnp-uuid.h
index f9e4351..bed9d35 100644
--- a/libgupnp/gupnp-uuid.h
+++ b/libgupnp/gupnp-uuid.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_UUID_H__
-#define __GUPNP_UUID_H__
+#ifndef GUPNP_UUID_H
+#define GUPNP_UUID_H
 
 G_BEGIN_DECLS
 
@@ -29,4 +29,4 @@ gupnp_get_uuid (void);
 
 G_END_DECLS
 
-#endif /* __GUPNP_UUID_H__ */
+#endif /* GUPNP_UUID_H */
diff --git a/libgupnp/gupnp-white-list.h b/libgupnp/gupnp-white-list.h
index 93b3adc..347b652 100644
--- a/libgupnp/gupnp-white-list.h
+++ b/libgupnp/gupnp-white-list.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_WHITE_LIST_H__
-#define __GUPNP_WHITE_LIST_H__
+#ifndef GUPNP_WHITE_LIST_H
+#define GUPNP_WHITE_LIST_H
 
 #include <glib.h>
 #include "gupnp-context.h"
@@ -107,4 +107,4 @@ gupnp_white_list_check_context  (GUPnPWhiteList *white_list,
 
 G_END_DECLS
 
-#endif /* __GUPNP_WHITE_LIST_H__ */
+#endif /* GUPNP_WHITE_LIST_H */
diff --git a/libgupnp/gupnp-windows-context-manager.h b/libgupnp/gupnp-windows-context-manager.h
index 2387d12..cfdd5d4 100644
--- a/libgupnp/gupnp-windows-context-manager.h
+++ b/libgupnp/gupnp-windows-context-manager.h
@@ -23,8 +23,8 @@
  * Boston, MA 02111-1307, USA.
  */
 
-#ifndef __GUPNP_WINDOWS_CONTEXT_MANAGER_H__
-#define __GUPNP_WINDOWS_CONTEXT_MANAGER_H__
+#ifndef GUPNP_WINDOWS_CONTEXT_MANAGER_H
+#define GUPNP_WINDOWS_CONTEXT_MANAGER_H
 
 #include "gupnp-simple-context-manager.h"
 
@@ -70,4 +70,4 @@ typedef struct {
 
 G_END_DECLS
 
-#endif /* __GUPNP_WINDOWS_CONTEXT_MANAGER_H__ */
+#endif /* GUPNP_WINDOWS_CONTEXT_MANAGER_H */
diff --git a/libgupnp/gupnp-xml-doc.h b/libgupnp/gupnp-xml-doc.h
index 1162acd..4891f76 100644
--- a/libgupnp/gupnp-xml-doc.h
+++ b/libgupnp/gupnp-xml-doc.h
@@ -22,8 +22,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GUPNP_XML_DOC_H__
-#define __GUPNP_XML_DOC_H__
+#ifndef GUPNP_XML_DOC_H
+#define GUPNP_XML_DOC_H
 
 #include <libxml/tree.h>
 #include <glib-object.h>
@@ -82,4 +82,4 @@ gupnp_xml_doc_new_from_path             (const char     *path,
 
 G_END_DECLS
 
-#endif /* __GUPNP_XML_DOC_H__ */
+#endif /* GUPNP_XML_DOC_H */
diff --git a/libgupnp/gvalue-util.h b/libgupnp/gvalue-util.h
index 36e95a0..250bb35 100644
--- a/libgupnp/gvalue-util.h
+++ b/libgupnp/gvalue-util.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __GVALUE_UTIL_H__
-#define __GVALUE_UTIL_H__
+#ifndef GUPNP_GVALUE_UTIL_H
+#define GUPNP_GVALUE_UTIL_H
 
 #include <glib-object.h>
 #include <libxml/tree.h>
@@ -37,4 +37,4 @@ G_GNUC_INTERNAL gboolean
 gvalue_util_value_append_to_xml_string (const GValue *value,
                                         GString      *str);
 
-#endif /* __GVALUE_UTIL_H__ */
+#endif /* GUPNP_GVALUE_UTIL_H */
diff --git a/libgupnp/http-headers.h b/libgupnp/http-headers.h
index 52c5d43..69102c3 100644
--- a/libgupnp/http-headers.h
+++ b/libgupnp/http-headers.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __HTTP_HEADERS_H__
-#define __HTTP_HEADERS_H__
+#ifndef GUPNP_HTTP_HEADERS_H
+#define GUPNP_HTTP_HEADERS_H
 
 #include <libsoup/soup-message.h>
 
@@ -61,4 +61,4 @@ http_response_set_body_gzip      (SoupMessage   *msg,
 
 G_END_DECLS
 
-#endif /* __HTTP_HEADERS_H__ */
+#endif /* GUPNP_HTTP_HEADERS_H */
diff --git a/libgupnp/xml-util.h b/libgupnp/xml-util.h
index 8b25bdc..5e920a3 100644
--- a/libgupnp/xml-util.h
+++ b/libgupnp/xml-util.h
@@ -19,8 +19,8 @@
  * Boston, MA 02110-1301, USA.
  */
 
-#ifndef __XML_UTIL_H__
-#define __XML_UTIL_H__
+#ifndef GUPNP_XML_UTIL_H
+#define GUPNP_XML_UTIL_H
 
 #include <libxml/tree.h>
 #include <libsoup/soup-uri.h>
@@ -76,4 +76,4 @@ G_GNUC_INTERNAL void
 xml_util_add_content                    (GString    *xml_str,
                                          const char *content);
 
-#endif /* __XML_UTIL_H__ */
+#endif /* GUPNP_XML_UTIL_H */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]