~ubuntu-branches/debian/sid/x42-plugins/sid

« back to all changes in this revision

Viewing changes to convoLV2/uris.h

  • Committer: Package Import Robot
  • Author(s): Jaromír Mikeš
  • Date: 2015-03-23 18:26:21 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20150323182621-bxlw3w09u72u4ned
Tags: 20141101-1
* Imported Upstream version 20141101
* Bump Standards.
* Patch refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#define CLV2__impulse CONVOLV2_URI "#impulse"
31
31
#define CLV2__load    CONVOLV2_URI "#load"
32
32
#define CLV2__state   CONVOLV2_URI "#state"
33
 
#define CLV2__uiinit  CONVOLV2_URI "#uiinit"
34
33
 
35
34
typedef struct {
36
35
        LV2_URID atom_Blank;
40
39
        LV2_URID atom_eventTransfer;
41
40
        LV2_URID clv2_impulse;
42
41
        LV2_URID clv2_state;
43
 
        LV2_URID clv2_uiinit;
 
42
        LV2_URID patch_Get;
44
43
        LV2_URID patch_Set;
45
44
        LV2_URID patch_property;
46
45
        LV2_URID patch_value;
56
55
        uris->atom_eventTransfer = map->map(map->handle, LV2_ATOM__eventTransfer);
57
56
        uris->clv2_impulse       = map->map(map->handle, CLV2__impulse);
58
57
        uris->clv2_state         = map->map(map->handle, CLV2__state);
59
 
        uris->clv2_uiinit        = map->map(map->handle, CLV2__uiinit);
 
58
        uris->patch_Get          = map->map(map->handle, LV2_PATCH__Get);
60
59
        uris->patch_Set          = map->map(map->handle, LV2_PATCH__Set);
61
60
        uris->patch_property     = map->map(map->handle, LV2_PATCH__property);
62
61
        uris->patch_value        = map->map(map->handle, LV2_PATCH__value);