Sounds like you may need some basic introduction to COM Programming.
It sounds like you have imported the library. But you need to learn how to call the functions that holds.
First off look at the bottom of the import unit (right above the implementation keyword) you will find several classes named CoXXX where XXX is usually the name of the interface you want to create.
The CoXXX Classes will look like this:
CoXXX = class
class function Create: IXXX;
class function CreateRemote(const MachineName: string): IXXX;
end;
So taking a guess at the information you have provided.
var
M : IMeasurement;
begin
M := CoIMeasurement.Create
M.MethodYouNeedToCall;
end;