16/32 Bit Strings

16/32 Bit Strings

Question:
Is there a difference in the way that strings are passed between an application written in Delphi 1.0 and a DLL and between an application written in Delphi 3.0 and a DLL? For example, are the strings in Delphi 3.0 null terminated?

Answer:
Yes, there is a definite difference between strings in Delphi 1.0 and Delphi 3.0. Delphi 1.0 strings are traditionally ShortStrings–nothing more than character arrays of 256 bytes. Delphi 2.0 (and later versions) strings are AnsiStrings, which are actually pointers to null-terminated strings. Furthermore, AnsiStrings have a negative offset that contains the “length code” as opposed to ShortStrings that have a zero-offset that contains the “length byte.” What does this mean? Well, the length code of an AnsiString is a 32-bit code, which means that it can be as large as 4GB. AnsiStrings in Win32 can be as large as that. On the other hand, since the length byte of a ShortString is only 8-bits, the largest value it can be is 256. So there are fundamental differences between strings in version 1 and 2+. Based on what I explained above, the Delphi 3.0 string is not really null-terminated. However, the data that the string pointer variable points to is null-terminated. So to answer your question, strings passed in an application written in the different versions of Delphi are handled differently by virtue of their very different natures.

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes