vote up 2 vote down star

I am developing a TCP/IP client that has to deal with a proprietary binary protocol. I was considering using user-defined types to represent the protocol headers, and using CopyMemory to shuffle data to and from the UDT and a byte array. However, it appears that VB6 adds padding bytes to align user-defined types. Is there any way to force VB6 to not pad UDT's, similar to the #pragma pack directive available in many C/C++ compilers? Perhaps a special switch passed to the compiler?

flag

54% accept rate

2 Answers

vote up 3 vote down check

No.

Your best best is to write the low level stuff in C or C++ (where you do have #pragma pack), then expose the interface via COM.

(Out of curiosity, why are you still working with VB6 instead of VB.NET?)

link|flag
It's a legacy app written in VB6 and a long time ago it was decided it was better to keep as much in VB6 as possible rather than mix-and-match .NET and COM. Probably a bit idealistic on our part, but then again COM Interop isn't always the most fun to work with ;-) – Mike Spross Sep 27 '08 at 5:35
Use in conjuction with the advice given below – computinglife Sep 27 '08 at 6:56
vote up 1 vote down

There is not any way to force VB6 to not pad UDT's, similar to the #pragma pack directive available in many C/C++ compilers, but you can do it the other way around.

According to Q194609 Visual Basic uses 4 bytes alignment and Visual C++ uses 8 bytes by default.

When using VB6 to call out to a C DLL, I used the MS "pshpack4.h" header files to handle the alignment because various compilers do this in different ways, as shown in this (rather edited) example:

// this is in a header file called vbstruct.h
...

# define VBSTRING    	char
# define VBFIXEDSTRING  char
# define VBDATE     	double
# define VBSINGLE   	float

# ifdef _WIN32
#  define VBLONG    	long
#  define VBINT     	short
# else  // and this was for 16bit code not 64bit!!!!
#  define VBLONG    	long
#  define VBINT     	int
# endif
...

#  include "pshpack4.h"
...

typedef struct  VbComputerNameStruct
    {
    VBLONG           sName;
    VBSTRING         ComputerName[VB_COMPUTERNAME_LENGTH];
    }           VbComputerNameType;


typedef struct  VbNetwareLoginInfoStruct
    {
    VBLONG           	ObjectId;
    VBINT           	ObjectType;
    VBSTRING         	ObjectName[48];
    }           VbNetwareLoginInfoType;
...

#  include "poppack.h"
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.