UPnPsdk 0.1
Universal Plug and Play +, Software Development Kit
 
Loading...
Searching...
No Matches
Callback.hpp
Go to the documentation of this file.
1#ifndef COMPA_CALLBACK_HPP
2#define COMPA_CALLBACK_HPP
3// Copyright (C) 2022+ GPL 3 and higher by Ingo Höft, <Ingo@Hoeft-online.de>
4// Redistribution only with this Copyright remark. Last modified: 2024-01-25
5// Taken from authors who haven't made a note.
6// Last compare with ./Pupnp source file on 2025-05-23, ver 1.14.20
115
121
143typedef int (*Upnp_FunPtr)( //
144 Upnp_EventType EventType,
145 const void* Event,
146 void* Cookie
147);
148
149#endif /* COMPA_CALLBACK_HPP */
enum Upnp_EventType_e Upnp_EventType
Old C stile quirks to make a symbol protected. Look at Upnp_EventType_e.
Definition Callback.hpp:120
Upnp_EventType_e
The reason code for an event callback.
Definition Callback.hpp:19
@ UPNP_EVENT_RENEWAL_COMPLETE
Definition Callback.hpp:93
@ UPNP_EVENT_AUTORENEWAL_FAILED
Definition Callback.hpp:108
@ UPNP_DISCOVERY_ADVERTISEMENT_BYEBYE
Definition Callback.hpp:59
@ UPNP_CONTROL_GET_VAR_REQUEST
Definition Callback.hpp:39
@ UPNP_EVENT_SUBSCRIPTION_REQUEST
Definition Callback.hpp:83
@ UPNP_DISCOVERY_ADVERTISEMENT_ALIVE
Definition Callback.hpp:54
@ UPNP_CONTROL_ACTION_COMPLETE
Definition Callback.hpp:33
@ UPNP_EVENT_SUBSCRIPTION_EXPIRED
Definition Callback.hpp:113
@ UPNP_DISCOVERY_SEARCH_RESULT
Definition Callback.hpp:65
@ UPNP_EVENT_SUBSCRIBE_COMPLETE
Definition Callback.hpp:98
@ UPNP_CONTROL_GET_VAR_COMPLETE
Definition Callback.hpp:44
@ UPNP_EVENT_UNSUBSCRIBE_COMPLETE
Definition Callback.hpp:103
@ UPNP_DISCOVERY_SEARCH_TIMEOUT
Definition Callback.hpp:70
@ UPNP_EVENT_RECEIVED
Definition Callback.hpp:88
@ UPNP_CONTROL_ACTION_REQUEST
Definition Callback.hpp:28
int(* Upnp_FunPtr)(Upnp_EventType EventType, const void *Event, void *Cookie)
Definition Callback.hpp:143