tags:

views:

115

answers:

2

How to create dll using gcc compiler/Mingw for visual basic?

A: 

VB (all versions) prefers the pascal calling convention.

Declare your external functions with WINAPI and export them in your .def file.

Joshua
A: 

This: http://www.mingw.org/wiki/DLL might be useful to you.

rogerdpack