Changeset 0d84d5


Ignore:
Timestamp:
03/17/12 19:18:56 (14 months ago)
Author:
Erik Johansson <erik@…>
Branches:
('master', '033cf796174446f5fff5bbfad1cbf1e4af35c0d8')('controller-upgrade', '72b31cc86eeeef18f1371a3067b6e8a5ca21abfc')('windows_service_fixes', 'df6bd2788365991d36d5af2a75833b8de2a5860f')
Children:
5061c759f3ac7966696921c86e2020a6fcb37b0d
Parents:
ee4d821a7a727db5eda4b254618714e407afcd3d
git-author:
Erik Johansson <erik@ejohansson.se>2012-03-17 19:12:30+01:00
git-committer:
Erik Johansson <erik@ejohansson.se>2012-03-17 19:18:56+01:00
Message:

Document TDControllerEvent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • telldus-core/client/telldus-core.cpp

    ree4d82 r0d84d5  
    267267 * @typedef TDControllerEvent 
    268268 * The callback type for controller events. 
     269 * 
     270 * @attention The callback will be called by another thread than the thread 
     271 * used by the application and some measures must be taken to synchronize it 
     272 * with the main thread. 
     273 * 
     274 * @param controllerId The id of the controller that was added, changed or 
     275 * removed. 
     276 * @param changeEvent One of the constants @ref TELLSTICK_DEVICE_ADDED, @ref 
     277 * TELLSTICK_DEVICE_STATE_CHANGED or @ref TELLSTICK_DEVICE_REMOVED. 
     278 * @param changeType If @a changeEvent is @ref TELLSTICK_DEVICE_ADDED this is 
     279 * the controller's type (e.g. @ref TELLSTICK_CONTROLLER_TELLSTICK or @ref 
     280 * TELLSTICK_CONTROLLER_TELLSTICK_DUO); if @a changeEvent is @ref 
     281 * TELLSTICK_DEVICE_CHANGED this indicates what has changed (e.g. @ref 
     282 * TELLSTICK_CHANGE_AVAILABLE, @ref TELLSTICK_CHANGE_NAME or @ref 
     283 * TELLSTICK_CHANGE_FIRMWARE). 
     284 * @param newValue If @a changeEvent is @ref TELLSTICK_DEVICE_CHANGED this is 
     285 * the property's new value. For @ref TELLSTICK_CHANGE_AVAILABLE this is either 
     286 * 0 or 1. 
     287 * @param callbackId The id of the callback. 
     288 * @param context The pointer passed when registering for the event. 
     289 * 
    269290 * @sa tdRegisterControllerEvent 
    270291 * 
Note: See TracChangeset for help on using the changeset viewer.