Edit Source on a file, and between the
type prototypes
and
end prototypes
put a line similar to this...
FUNCTION ulong GetThreadLocale() LIBRARY "kernel32.dll"
Then in PowerBuilder, you can have...
long llVar
llVar = GetThreadLocale()
Take that code and replace the ulong with whatever the GetFileTime() returns. Likely use a datetime. And then if GetFileTime takes any arguments, add them to that line as well.