Browse Source

add more debug printfs

pull/1639/head
bsp2 6 years ago
parent
commit
54755f601a
2 changed files with 4 additions and 0 deletions
  1. BIN
      other/vst2_debug_host/vst2_debug_host
  2. +4
    -0
      other/vst2_debug_host/vst2_debug_host.cpp

BIN
other/vst2_debug_host/vst2_debug_host View File


+ 4
- 0
other/vst2_debug_host/vst2_debug_host.cpp View File

@@ -73,11 +73,15 @@ void open_and_close(void) {
if(NULL != mainProc)
{
AEffect *effect;
printf("xxx calling mainProc\n");
effect = mainProc(HostCallback);
printf("xxx mainProc returned effect=%p\n", effect);

if(NULL != effect)
{
printf("xxx calling effect->dispatcher<effOpen>\n");
effect->dispatcher(effect, effOpen, 0, 0, NULL, 0.0f);
printf("xxx effect->dispatcher<effOpen> returned\n");
VstIntPtr ip = effect->dispatcher(effect, effEditOpen, 0, 0, NULL/*hWnd*/, 0.0f);
(void)ip;
printf("xxx call processreplacing\n");


Loading…
Cancel
Save