mirror of
https://github.com/laomms/wxhelper.git
synced 2024-12-23 17:49:19 +08:00
11 lines
301 B
C
11 lines
301 B
C
|
#ifndef BASE_MEMORY_H_
|
||
|
#define BASE_MEMORY_H_
|
||
|
#include <windows.h>
|
||
|
#include <vector>
|
||
|
namespace base {
|
||
|
namespace memory {
|
||
|
std::vector<INT64> ScanAndMatchValue(INT64 value, INT64 start,int align);
|
||
|
int Sunday(const byte* total, int tlen, const byte* part, int plen);
|
||
|
}
|
||
|
} // namespace base
|
||
|
#endif
|