Skip to content

Commit

Permalink
[Doc] 2.16.0.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertvanderHulst committed May 24, 2023
1 parent 0568333 commit 0685511
Show file tree
Hide file tree
Showing 8 changed files with 1,008 additions and 1,007 deletions.
13 changes: 11 additions & 2 deletions Tests/Applications/Tester/Prg/tester.prg
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
FUNCTION Start() AS VOID
local pBuffer as PSZ
local pFormat as PSZ
pFormat := String2Psz("Example %s")
pBuffer := MemAlloc(1000)
wsprintf(pBuffer, pFormat, __arglist("abc"))
? Psz2String(pBuffer)
MemFree(pBuffer)
wait
return


FUNCTION Test (a := NIL,b := NIL as USUAL)
return a * b

_DLL FUNCTION wsprintf(pszBuffer AS PSZ, pszFormat AS PSZ, ...) AS INT STRICT:USER32.wsprintfA
Loading

0 comments on commit 0685511

Please sign in to comment.