12345678910111213141516171819202122232425 |
- #ifndef BASE_WIN_PATCH_UTIL_H_
- #define BASE_WIN_PATCH_UTIL_H_
- #include <windows.h>
- #include "base/base_export.h"
- namespace base {
- namespace win {
- namespace internal {
- BASE_EXPORT DWORD ModifyCode(void* destination, const void* source, int length);
- }
- }
- }
- #endif
|