Guest User

Untitled

a guest
Apr 3rd, 2014
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Diff 0.69 KB | None | 0 0
  1. diff -Naurb ./vst-bridge/common/common.h ./vst-bridge-patched/common/common.h
  2. --- ./vst-bridge/common/common.h    2014-04-03 18:15:04.000000000 +0400
  3. +++ ./vst-bridge-patched/common/common.h    2014-04-03 17:21:52.000000000 +0400
  4. @@ -75,7 +75,7 @@
  5.    int32_t initialDelay;
  6.    int32_t uniqueID;
  7.    int32_t version;
  8. -};
  9. +} __attribute__((packed));
  10.  
  11.  struct vst_bridge_midi_event {
  12.    int32_t type;
  13. @@ -83,12 +83,12 @@
  14.    int32_t deltaFrames;
  15.    int32_t flags;
  16.    uint8_t data[0];
  17. -};
  18. +} __attribute__((packed));
  19.  
  20.  struct vst_bridge_midi_events {
  21.    uint32_t nb;
  22.    struct vst_bridge_midi_event events[0];
  23. -};
  24. +} __attribute__((packed));
  25.  
  26.  struct vst_bridge_request {
  27.    uint32_t tag;
Advertisement
Add Comment
Please, Sign In to add comment