|
|
|
|
|
by userbinator
409 days ago
|
|
Instead of memset() you've got ZeroMemory(), instead of memcpy() you've got CopyMemory(). I believe MSVC intrinsics will use the rep stos/movs instructions, which are even smaller than calling functions (which includes the size of their import table entries too.) |
|