Passing Basic User-Defined Type to C by Far Reference (27301)



The information in this article applies to:

  • Microsoft QuickBASIC 4.0
  • Microsoft QuickBASIC 4.0b
  • Microsoft QuickBASIC 4.5
  • Microsoft BASIC Compiler for MS-DOS and OS/2 6.0
  • Microsoft BASIC Compiler for MS-DOS and OS/2 6.0b

This article was previously published under Q27301

SUMMARY

The following example demonstrates how to pass a user-defined type from compiled Basic to Microsoft C by far reference.

This information about inter-language calling applies to QuickBasic Versions 4.00, 4.00b, and 4.50 for MS-DOS and to Microsoft Basic Compiler Versions 6.00 and 6.00b for MS-DOS and MS OS/2.

MORE INFORMATION

For more information about passing other types of parameters between Basic and C, and a list of which Basic and C versions are compatible with each other, query in the Microsoft Knowledge Base using the following word:

BAS2C

Code Example

REM ===== Basic PROGRAM =====

TYPE record
   a AS INTEGER
   b AS STRING * 20
   c AS SINGLE
END TYPE
DECLARE SUB TypeReference CDECL (BYVAL p1o AS INTEGER, _
                                 BYVAL p1s AS INTEGER)
CLS
DIM element AS record
element.a = 128
element.b = DATE$ + CHR$(0)
element.c = 39.6
CALL TypeReference(VARPTR(element), VARSEG(element))
END

/* ===== C ROUTINE ===== */ 

#include <stdio.h>
struct record{
       int a;
       char b[20];
       float c;
       };

void TypeReference(element)
     struct record far *element;
 {
     printf("Record.A = %d\n",element->a);
     printf("Record.B = %s\n",element->b);
     printf("Record.C = %f\n",element->c);
 }
				
===== OUTPUT =====
Record.A = 128
Record.B = 02-02-1988
Record.C = 39.599998
				

Modification Type:MinorLast Reviewed:8/16/2005
Keywords:KB27301