1
Network / Can you upload/download entire directories?
« on: August 11, 2011, 04:57:48 pm »
It's not ideal, but it'll do. Thanks.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
char* buffer = ...;
size_t size = ...;
sf::Font font;
font.LoadFromMemory(buffer, size);
// Is it safe for me to delete the buffer now?
free(buffer);
So it's not often necessary, but there are some rare uses... and why not?