Visual C++ DLLs Need a DEF File for VB Clients

Visual C++ DLLs Need a DEF File for VB Clients

The VB community is still waiting for somekind of tool to create “real” DLL with Visual Basic.Awaiting for this to arrive with VB x.0 (x

Writing DLLs with C/C++
The message shown above is remarkably clear: there’s no Checkfunction in the DLL! At least this time, the culprit is notVisual Basic, but a particular feature of Visual C++.

When you write DLLs with C or C++ you have to qualify thefunction with a macro to specify the calling convention and makesure the function will be regularly exported. Macros such asAPIENTRY, WINAPI, or a keyword such as __stdcall do just this.They are all synonims. Using the standard convention (also knownas the PASCAL convention) causes the parameters of a function tobe inserted onto the stack in the same order they appear in thefunction’s declaration from right to left. As a result, thefunction will pick them up in the reading order. (The stackfollows a LIFO discipline.) Adhering to the standard conventionalso means the all the arguments are assumed to be by valueunless a pointer is explicitly mentioned and the stack is cleanedup after the call.

Let’s try to recompile the Visual C++ DLL without the WINAPIqualify, and following a non-standard C-based convention. Whatchanges is just the error!

What happens is that now Visual Basic finds out a functioncalled Check but it doesn?t like the function’s callingconvention ?which is not the Pascal’s.

Looking at the C++ function declaration, notice the keyword extern”C”. This is necessary only if you’re using the C++language, that is the file is compiled as C++ and not C. It justinforms both compiler and linker that the function is not apublic member of any class but must be considered as a simplerstandalone, global symbol. In other words, that function namemust not be changed to fit into a class name scheme. (When youexports C++ classes, their methods are exported through differentnames. The new name is a combination of the method’s name, theclass name and the prototype to make the final symbol unique.Such a process is known as name-mangling and may differfrom compiler to compiler!)

Overall, the extern “C” keyword is notresponsible for the errors we’re having. The same thing can besaid regarding WINAPI. Perhaps, the point to investigate furtheris the keyword that actually causes the function to be exported.

Exporting Functions from C/C++ DLLs
From Visual C++ 5.0 on, Microsoft recommends the use of _declspec(dllexport)to export a DLL function. There’s an alternative technique: don?tadd anything at the level of the function’s declaration but groupall the exported names in a definition file (DEF) to be linked tothe project. The use of a DEF file is suggested to be somewhatobsolete. The DEF file for a simple DLL exporting just a Checkfunction is like this:

LIBRARY vbcppEXPORTSCheck @1

You just declare the library and lists the exported functionswith an optional number that can be used as well as the functionname to load the function dynamically.

In theory these two techniques should be completely equivalent.In practice, this is true only if you’re calling the DLL fromwithin C/C++ programs. If you want to call the DLL also from VB,then only the DEF technique works fine! Let’s see the details.

It’s Visual C++’s fault?
By design the Visual C++ applies a sort of name-mangling tofunction names when it detects the standard PASCAL callingconvention (WINAPI, APIENTRY or __stdcall). Due to this, a simpleCheck function becomes an odd _Check@4, as shown below.

The screenshot reproduces a portion of the output that dumpbin.exegenerates. It is a utility you find in the BIN directory ofVisual C++. It returns information about the content of a Win32binary module. The command line I used to get this is:

dumpbin /EXPORTS vbcpp.dll >vbcpp.lst

The switch EXPORTS makes it enumerate all the exported symbols.As you can see, there’s no mention of a Check function whichjustifies the error we got above. The mangling, and thesubsequent error 453, is due to the PASCAL calling convention. Onthe other hand, if we change the calling convention we obtainanother error! One possible solution is? using anothercompiler to create our C/C++ library. The same scenario doesn?toccur if you compile with the Borland C++ compiler, for example!Another solution might be calling the function with its actualname: _Check@4. However, this isn?t a valid name to VisualBasic. With reason!

Actually, I’ve never experienced this?
I write DLLs almost every day and a large number of them endsup being called from within Visual Basic. So, imagine my surprisewhen I heard of this. Taking for granted that any DLL functionmust be declared WINAPI and that you have to prefix it withextern “C” if you’re writing a C++ file, what remainsto decide is how to actually export a function to make itcallable from VB. You have just to use a DEF file. The name thatthe linker writes in the DLL file is what is written in the DEFfile if any. The linker works in two steps. Firstly, it manglesthe name of the function as soon as it realizes about the PASCALconvention. Secondly, it writes down in the binary file the namedefined by the DEF file. If no DEF file is specified then thefunction names default to the mangled ones. Since I’ve never used_declspec to export functions, but always resorted to DEFs,actually I’ve experienced this. Thus, remember to exportfunctions through a DEF file to make them callable from VBclients. This behavior applies to both Visual C++ 5.0 and 6.0.Everything works fine, instead, with previous versions and othervendor’s compilers.

devx-admin

devx-admin

Share the Post:
Web App Security

Web Application Supply Chain Security

Today’s web applications depend on a wide array of third-party components and open-source tools to function effectively. This reliance on external resources poses significant security

Thrilling Battle

Thrilling Battle: Germany Versus Huawei

The German interior ministry has put forward suggestions that would oblige telecommunications operators to decrease their reliance on equipment manufactured by Chinese firms Huawei and

iPhone 15 Unveiling

The iPhone 15’s Secrets and Surprises

As we dive into the most frequently asked questions and intriguing features, let us reiterate that the iPhone 15 brings substantial advancements in technology and

Performance Camera

iPhone 15: Performance, Camera, Battery

Apple’s highly anticipated iPhone 15 has finally hit the market, sending ripples of excitement across the tech industry. For those considering upgrading to this new

Battery Breakthrough

Electric Vehicle Battery Breakthrough

The prices of lithium-ion batteries have seen a considerable reduction, with the cost per kilowatt-hour dipping under $100 for the first occasion in two years,

Web App Security

Web Application Supply Chain Security

Today’s web applications depend on a wide array of third-party components and open-source tools to function effectively. This reliance on external resources poses significant security risks, as malicious actors can

Thrilling Battle

Thrilling Battle: Germany Versus Huawei

The German interior ministry has put forward suggestions that would oblige telecommunications operators to decrease their reliance on equipment manufactured by Chinese firms Huawei and ZTE. This development comes after

iPhone 15 Unveiling

The iPhone 15’s Secrets and Surprises

As we dive into the most frequently asked questions and intriguing features, let us reiterate that the iPhone 15 brings substantial advancements in technology and design compared to its predecessors.

Chip Overcoming

iPhone 15 Pro Max: Overcoming Chip Setbacks

Apple recently faced a significant challenge in the development of a key component for its latest iPhone series, the iPhone 15 Pro Max, which was unveiled just a week ago.

Performance Camera

iPhone 15: Performance, Camera, Battery

Apple’s highly anticipated iPhone 15 has finally hit the market, sending ripples of excitement across the tech industry. For those considering upgrading to this new model, three essential features come

Battery Breakthrough

Electric Vehicle Battery Breakthrough

The prices of lithium-ion batteries have seen a considerable reduction, with the cost per kilowatt-hour dipping under $100 for the first occasion in two years, as reported by energy analytics

Economy Act Soars

Virginia’s Clean Economy Act Soars Ahead

Virginia has made significant strides towards achieving its short-term carbon-free objectives as outlined in the Clean Economy Act of 2020. Currently, about 44,000 megawatts (MW) of wind, solar, and energy

Renewable Storage Innovation

Innovative Energy Storage Solutions

The Department of Energy recently revealed a significant investment of $325 million in advanced battery technologies to store excess renewable energy produced by solar and wind sources. This funding will

Renesas Tech Revolution

Revolutionizing India’s Tech Sector with Renesas

Tushar Sharma, a semiconductor engineer at Renesas Electronics, met with Indian Prime Minister Narendra Modi to discuss the company’s support for India’s “Make in India” initiative. This initiative focuses on

Development Project

Thrilling East Windsor Mixed-Use Development

Real estate developer James Cormier, in collaboration with a partnership, has purchased 137 acres of land in Connecticut for $1.15 million with the intention of constructing residential and commercial buildings.

USA Companies

Top Software Development Companies in USA

Navigating the tech landscape to find the right partner is crucial yet challenging. This article offers a comparative glimpse into the top software development companies in the USA. Through a

Software Development

Top Software Development Companies

Looking for the best in software development? Our list of Top Software Development Companies is your gateway to finding the right tech partner. Dive in and explore the leaders in

India Web Development

Top Web Development Companies in India

In the digital race, the right web development partner is your winning edge. Dive into our curated list of top web development companies in India, and kickstart your journey to

USA Web Development

Top Web Development Companies in USA

Looking for the best web development companies in the USA? We’ve got you covered! Check out our top 10 picks to find the right partner for your online project. Your

Clean Energy Adoption

Inside Michigan’s Clean Energy Revolution

Democratic state legislators in Michigan continue to discuss and debate clean energy legislation in the hopes of establishing a comprehensive clean energy strategy for the state. A Senate committee meeting

Chips Act Revolution

European Chips Act: What is it?

In response to the intensifying worldwide technology competition, Europe has unveiled the long-awaited European Chips Act. This daring legislative proposal aims to fortify Europe’s semiconductor supply chain and enhance its

Revolutionized Low-Code

You Should Use Low-Code Platforms for Apps

As the demand for rapid software development increases, low-code platforms have emerged as a popular choice among developers for their ability to build applications with minimal coding. These platforms not

Cybersecurity Strategy

Five Powerful Strategies to Bolster Your Cybersecurity

In today’s increasingly digital landscape, businesses of all sizes must prioritize cyber security measures to defend against potential dangers. Cyber security professionals suggest five simple technological strategies to help companies

Global Layoffs

Tech Layoffs Are Getting Worse Globally

Since the start of 2023, the global technology sector has experienced a significant rise in layoffs, with over 236,000 workers being let go by 1,019 tech firms, as per data

Huawei Electric Dazzle

Huawei Dazzles with Electric Vehicles and Wireless Earbuds

During a prominent unveiling event, Huawei, the Chinese telecommunications powerhouse, kept quiet about its enigmatic new 5G phone and alleged cutting-edge chip development. Instead, Huawei astounded the audience by presenting

Cybersecurity Banking Revolution

Digital Banking Needs Cybersecurity

The banking, financial, and insurance (BFSI) sectors are pioneers in digital transformation, using web applications and application programming interfaces (APIs) to provide seamless services to customers around the world. Rising

FinTech Leadership

Terry Clune’s Fintech Empire

Over the past 30 years, Terry Clune has built a remarkable business empire, with CluneTech at the helm. The CEO and Founder has successfully created eight fintech firms, attracting renowned

The Role Of AI Within A Web Design Agency?

In the digital age, the role of Artificial Intelligence (AI) in web design is rapidly evolving, transitioning from a futuristic concept to practical tools used in design, coding, content writing

Generative AI Revolution

Is Generative AI the Next Internet?

The increasing demand for Generative AI models has led to a surge in its adoption across diverse sectors, with healthcare, automotive, and financial services being among the top beneficiaries. These