Changeset 5335:dba934a2d1e0 in roaraudio for plugins/universal


Ignore:
Timestamp:
12/09/11 18:13:39 (12 years ago)
Author:
phi
Branch:
default
Phase:
public
Message:

cleanup and updates to roardl API

File:
1 edited

Legend:

Unmodified
Added
Removed
  • plugins/universal/plugin-info.c

    r5318 r5335  
    1 //discard.c: 
     1//plugin-info.c: 
    22 
    33/* 
     
    109109 .init = init, 
    110110 .free = NULL, 
    111  .update = NULL 
     111 .update = NULL, 
     112 .tick = NULL, 
     113 .wait = NULL 
    112114}; 
    113115 
    114 ROAR_DL_PLUGIN_START(roard_plugin_info) { 
    115 // ROARD_DL_CHECK_VERSIONS(); 
    116  
    117  libname.license = "GPL-3.0";  
     116ROAR_DL_PLUGIN_START(plugin_info) { 
     117 ROAR_DL_PLUGIN_META_PRODUCT("plugin-info <0/RoarAudio>"); 
     118 ROAR_DL_PLUGIN_META_PRODUCT_NIV("plugin-info", 0, "RoarAudio"); 
     119 ROAR_DL_PLUGIN_META_VERSION(ROAR_VERSION_STRING); 
     120 ROAR_DL_PLUGIN_META_DESC("Display information about the plugin context"); 
     121 ROAR_DL_PLUGIN_META_CONTACT_FLNE("Philipp", "Schafft", "ph3-der-loewe", "lion@lion.leolix.org"); 
     122 ROAR_DL_PLUGIN_META_LICENSE_TAG(GPLv3_0);  
    118123 
    119124 ROAR_DL_PLUGIN_REG_GLOBAL_DATA(global_data, global_data_init); 
Note: See TracChangeset for help on using the changeset viewer.