Passing COMMON Variables from Basic to C by Far Reference (27327)



The information in this article applies to:

  • Microsoft QuickBASIC 4.0, when used with:
    • the operating system: MS-DOS
  • Microsoft QuickBASIC 4.0b, when used with:
    • the operating system: MS-DOS
  • Microsoft QuickBASIC 4.5, when used with:
    • the operating system: MS-DOS
  • 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 Q27327

SUMMARY

The following example demonstrates how to pass COMMON variables 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 =====

DECLARE SUB RCommon CDECL (_
            BYVAL p1o AS INTEGER,_
            BYVAL p1s AS INTEGER)
COMMON SHARED element1 AS INTEGER, element2 AS STRING * 20, _
              element3 AS SINGLE
element1 = 23
element2 = "DATE : " + DATE$ + CHR$(0)
element3 = 309.03
CALL RCommon(VARPTR(element1), VARSEG(element1))
END

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

#include <stdio.h>
struct common_block{   /* structure that looks like the Basic */ 
       int a;          /* common block                        */ 
       char b[20];
       float c;
};
void RCommon(pointer)
     struct common_block far *pointer;
 {
     printf("Element1 = %d\n",pointer->a);
     printf("Element2 = %s\n",pointer->b);
     printf("Element3 = %f\n",pointer->c);
 }

===== OUTPUT =====

Element1 = 23
Element2 = DATE : 02-02-1988
Element3 = 309.029999
				

Modification Type:MinorLast Reviewed:1/8/2003
Keywords:KB27327