int GB.LoadFile ( const char *path , long lenp , char **addr , long *len )
Loads a file into memory.
![]() |
You must use this function if you want to access a file located into the project or the current
component, i.e. if path is relative.
The reason is that Gambas executables are mapped into memory, and so in that case this function does not load anything, but just returns a pointer to the file data. |
![]() | If you need to access a file located in the project or in the current component as a real file, use the GB.RealFileName function. |