How to make C++ interface's functions callable in blueprints

I believe you need to actually implement your interface in a C++ class, via multiple inheritence

as per my tutorial here:

THEN in that class you can specify BlueprintImplementable Functions

as per my tutorial here:

Rama