The structure can be for example like this:
struct Data
field1: integer;
field2: string[256];
field3: integer;
...
...
endstruct
Thank you for your help
Werner
Werner
Check out VFP\SAMPLES\SOLUTION\SOLUTION.APP
-Anders
--
Anders Altberg Anders....@swipnet.se
10/06/97 18:39
---------
Using: OUI PRO 1.5.0.2 from http://www.dvorak.com
Check the reply over in ms programmer.exchange. This particular API function (GetOpenFileName) can't be
called directly because internally the struct it uses contains pointers.
df - (MVP FoxPro) http://www.geocities.com/ResearchTriangle/9834/
Werner Nussbaumer <W.Nuss...@datacomm.ch> wrote in article <3438DE...@datacomm.ch>...
> How can I declare a structure to be passed via address to a
--
Dan Giralte dang...@execpc.com
http://www.execpc.com/~dangirnt
.plan: To Hell with the cannons! We're going in!
Werner Nussbaumer wrote in message <3438DE...@datacomm.ch>...
>How can I declare a structure to be passed via address to a
>Windows DLL function like GetOpenFileName of the Windows API?
>
>The structure can be for example like this:
>
>struct Data
> field1: integer;
> field2: string[256];
> field3: integer;
> ...
> ...
>endstruct
>