Community Forums Today's Posts     Member List     Archive    
Results 1 to 3 of 3
  1. #1
    Join Date
    Jan 2012
    Posts
    2

    Question TS3 Overlay plugin under linux API mismatch

    Hi!
    Anyone knows if exist a linux native overlay plugin?
    I found ts3xosd.c googling a bit.

    http://code.in-verted.de/projects/ts3xosd/wiki

    Compiling was ok but API used is ver 11 instead of requested 14. resulting plugin incompatible. Any clue? may be put inside the .c this?

    Code:
    #define PLUGIN_API_VERSION 14
    tnx

  2. #2
    Join Date
    Jun 2008
    Location
    Krün, Germany
    Posts
    464
    To update an existing plugin to the latest API version:

    * Update the return value of ts3plugin_version()
    * Copy the latest plugin headers from the latest plugin SDK (everything in pluginsdk/include) to your plugin project
    * Take the demo test plugin from the plugin SDK and make sure all the exported ts3plugin_XXX() declarations from your plugins match.
    * Recompile

    Sometimes we increase the API version because new functions are added (and the order of the function pointers in the ts3Functions struct changes). In this case it would be sufficient to just recompile the plugin with the latest headers. Sometimes we change parameters of existing callbacks or functions, in this case you would need to update your plugin code if the plugin uses those functions. If not, you are lucky and can just recompile.

    While I agree it is annoying to rebuild plugins with almost every TS3 client release (and we are thinking of a way to avoid this), it at least takes minimal effort to update plugins and is just "copy headers and recompile" in most cases.

  3. #3
    Join Date
    Jan 2012
    Posts
    2
    Thanks a lot.
    I'll try you explained this evening.

    regards

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. TS3 Overlay plugin?
    By KrabKley in forum Plugins
    Replies: 250
    Last Post: 12-12-2012, 11:42
  2. Rc1: DX Overlay Plugin WOW
    By WoFNuLL in forum Bug Reports
    Replies: 4
    Last Post: 22-05-2011, 16:28
  3. [RELEASE] Another TS3 Overlay Plugin
    By MarkR in forum Plugins
    Replies: 120
    Last Post: 14-01-2011, 08:25
  4. ts3 overlay plugin (Failed to open plugin)
    By netmario in forum Windows
    Replies: 0
    Last Post: 22-09-2010, 08:29

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •