Good Day!
I've run into a small problem in converting some C++ code. This is a portion of the original TYPE:
...following the PB help file, I've converted that into:
...unfortunately, it appears that my pName isn't correct. Reading a bit more I learn that char* may be a pointer--which I know very little of. I can tell you that pName's length should be iNameL. Any ideas?
------------------
Don Ewald
mailto:[email protected][email protected]</A>
I've run into a small problem in converting some C++ code. This is a portion of the original TYPE:
Code:
typedef struct mon { short iNameL; // name size short iNameL2; // name size again char* pName; // name ...
Code:
TYPE Monsters iNameL AS INTEGER ' NAME SIZE iNameL2 AS INTEGER ' NAME SIZE again pName AS ASCIIZ PTR ' NAME ...
------------------
Don Ewald
mailto:[email protected][email protected]</A>
Comment