Here's a function from a sample C++ program that I'm trying to
convert to PB.
int GetName(char* szBuffer, int* pnBufferSize)
Here is what I'm doing
Function GetName ALIAS "GetName" (szBuffer as ASCIIZ, pnBufferSize as LONG) export as Long
I'm guessing that I should be doing something different with
pnBufferSize since its a pointer, but I'm not sure what.
Any pointers? No pun intended
------------------
[This message has been edited by Brad Warmuskerken (edited December 03, 2003).]
convert to PB.
int GetName(char* szBuffer, int* pnBufferSize)
Here is what I'm doing
Function GetName ALIAS "GetName" (szBuffer as ASCIIZ, pnBufferSize as LONG) export as Long
I'm guessing that I should be doing something different with
pnBufferSize since its a pointer, but I'm not sure what.
Any pointers? No pun intended
------------------
[This message has been edited by Brad Warmuskerken (edited December 03, 2003).]
Comment