c++ dll has exported funtion call such as:
void AccessUnknownBuf(char** cbuffer, int sizeofbuf);
VB does not know about the size of cbuffer beforehand. It has to get the cbuffer and its size from dll. How VB can do this?. somehow it should be accessing dll's memory area...?. seconldy, how to allocate more than 40000 bytes for character string type?.
dim s as string*50000 does not work.
|
Newbie Member
|
|
| 9Sep2006,12:36 | #2 |
|
It is actually like this:
void AccessUnknownBuf(char** cbuffer, int* sizeofcbuffer); |
|
Go4Expert Founder
|
![]() |
| 9Sep2006,14:18 | #3 |
|
AccessUnknownBuf should supply the size of the buffer for some default parameter and in VB use the string with SPACE to fill the buffer and pass that as an argument to the function.
|
|
Newbie Member
|
|
| 9Sep2006,20:36 | #4 |
|
how do you allocate this many mem space to string?.
Dim s as string*50000 (got overflow error). |
|
Go4Expert Founder
|
![]() |
| 10Sep2006,06:02 | #5 |
|
Code:
Dim str As String str = Space(1000) |
|
Newbie Member
|
|
| 10Sep2006,10:38 | #6 |
|
there is no way that i can access c++ dll's cBuffer content without allocating memory in VB?.
|
|
Go4Expert Founder
|
![]() |
| 10Sep2006,11:25 | #7 |
|
I dont think so. You are calling a function in a C++ dll and all you can get is the return type of the function or any pointer that you provide are having some data and the second option requires you to have the buffer in VB and pass that to C++ dll.
|

