Helpfile
Posted: Thu Oct 25, 2007 5:20 pm
1.)
it would be great if all the functions with a return value, would tell what type of result they return:
2.)
it would be great if all the examples would use:
instead of just:
c ya,
nco2k
it would be great if all the functions with a return value, would tell what type of result they return:
Code: Select all
Handle = WindowID(#Window)
*Pointer = PreviousElement(LinkedList())
Quad.q = FileSize(FileName$)
Byte.b = PeekB(*MemoryBuffer)
String$ = PeekS(*MemoryBuffer [, Length [, Flags]])
it would be great if all the examples would use:
Code: Select all
LoadSprite(0, #PB_Compiler_Home+"Examples\Sources\Data\PureBasic.bmp", 0)
Code: Select all
LoadSprite(0, "Data\PureBasic.bmp", 0)
nco2k