somma/_MyLib

is_executable_file_w() 분리

chaserhunter opened this issue · 0 comments

is_executable_file_w() 를 filepath와 handle을 받는 함수로 분리한다.

  • 기존
    bool is_executable_file_w(In const wchar_t* path, Out IMAGE_TYPE& type);

  • 변경
    is_executable_file_w(path) 내부에서 is_executable_file_w(handle)을 호출해서 처리
    bool is_executable_file_w(In const wchar_t* path, Out IMAGE_TYPE& type);
    bool is_executable_file_w(In HANDLE file_handle, Out IMAGE_TYPE& type);