Passing Basic Variable-Length String to C by Far Reference (27326)



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 Q27326

SUMMARY

The following example demonstrates how to pass a variable-length string variable from compiled Basic to Microsoft C by far reference.

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 StringFar CDECL (_
        BYVAL p1o AS INTEGER,_
        BYVAL p1s AS INTEGER,_
        SEG p3 AS INTEGER)
CLS
a$ = "This is a test" + CHR$(0)
CALL StringFar(SADD(a$), VARSEG(a$), LEN(a$))
END

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

#include <stdio.h>
void StringFar(a,len)
   char far *a;
    int *len;
 {
    int i;
    printf("The string is : %s \n\n",a);
    printf(" Index       Value       Character\n");
    for (i=0;i < *len; i++)
       {
         printf("  %2d          %3d            %c\n",i,a[i],a[i]);
       };
 }
				
===== OUTPUT =====

The string is : This is a test

 Index       Value       Character
   0           84            T
   1          104            h
   2          105            i
   3          115            s
   4           32
   5          105            i
   6          115            s
   7           32
   8           97            a
   9           32
  10          116            t
  11          101            e
  12          115            s
  13          116            t
  14            0
				

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