I've got the answer from the Trolltech support.

I negliged the windows calling convention (cf article at http://www.unixwiz.net/techtips/win32-callconv.html) with the consequence of corrupts memory all over the place.

Finally I had to change my typedef from:

Qt Code:
  1. typedef short int (*GetInfo)(unsigned char,unsigned char,unsigned char *,unsigned char *,unsigned char *,unsigned char *);
To copy to clipboard, switch view to plain text mode 
into:

Qt Code:
  1. typedef short int (__stdcall *GetInfo)(unsigned char,unsigned char,unsigned char *,unsigned char *,unsigned char *,unsigned char *);
To copy to clipboard, switch view to plain text mode 

That solved everything.