Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (1)
Memory modification
no vote
#ifndef _SEARCH_THREAD_H_ #define _SEARCH_THREAD_H_ #Define PROCESS_SIZE 1000//the maximum process #Define number of threads THREAD_NUM 1//search memory # Define WM_FIND_MEMORY (WM_USER+1)//find the search values # Define WM_FIND_PROGRESS (WM_USER+2)//search schedule # Define WM_SEARCH_FINISH (WM_USER+3)//search thread to finish # Define SEARCH_STRING_MAX_LENGTH 255//the maximum search string length class CModifyMemoryDlg; Search//thread function DWORD WINAPI SearchMemory(LPVOID lpParameter); //Search accuracy void EquSearch(CModifyMemoryDlg *pDlg, BYTE *lpBuf, MEMORY_BASIC_INFORMATION &mbi); //Greater than search void GreaterSearch(CModifyMemoryDlg *pDlg, BYTE *lpBuf, MEMORY_BASIC_INFORMATION &mbi); Search//less than void SmallerSearch(CModifyMemoryDlg *pDlg, BYTE *lpBuf, MEMORY_BASIC_INFORMATION &mbi);
kenyle
2016-08-23
1
1
No more~