home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / TeamSpeak / TeamSpeak3-Client-win32-3.0.0.exe / pluginsdk / include / plugin_definitions.h < prev    next >
Encoding:
C/C++ Source or Header  |  2011-08-08  |  683 b   |  23 lines

  1. #ifndef PLUGIN_DEFINITIONS
  2. #define PLUGIN_DEFINITIONS
  3.  
  4. /* Return values for ts3plugin_offersConfigure */
  5. enum PluginConfigureOffer {
  6.     PLUGIN_OFFERS_NO_CONFIGURE = 0,      /* Plugin does not implement ts3plugin_configure */
  7.     PLUGIN_OFFERS_CONFIGURE_NEW_THREAD,  /* Plugin does implement ts3plugin_configure and requests to run this function in an own thread */
  8.     PLUGIN_OFFERS_CONFIGURE_QT_THREAD    /* Plugin does implement ts3plugin_configure and requests to run this function in the Qt GUI thread */
  9. };
  10.  
  11. enum PluginMessageTarget {
  12.     PLUGIN_MESSAGE_TARGET_SERVER = 0,
  13.     PLUGIN_MESSAGE_TARGET_CHANNEL
  14. };
  15.  
  16. enum PluginItemType {
  17.     PLUGIN_SERVER,
  18.     PLUGIN_CHANNEL,
  19.     PLUGIN_CLIENT
  20. };
  21.  
  22. #endif
  23.