Hi all,
 
how do I determine which alignment to choose for a record that will be sent to a DLL compiled from C++ ? I have the source code for a test app that uses the DLL but I don't know enough of C++ to work out how to send a record to it. Here is a typical structure:
 
typedef struct EscCoordinateTag
{
 short Degree;
 short Minute;
 float Second;
} ESC_COORDINATE, *LPESC_COORDINATE;
Some structures contain other structure types also.
 
When importing the routines, I assume I use the cdecl convention?
 
cheers,
Phil.

Reply via email to