I was wondering if there was anyway to use functions like ReadFileEx that require a pointer to a function in a class WITHOUT marking the function as static? Thanks in advance. SBP.
I was wondering if there was anyway to use functions like ReadFileEx that require
Share
No, non-static class functions have an implied first argument (this) which is incompatible with their use as a callback for ReadFileEx etc.