| 26 | } |
| 27 | |
| 28 | BOOL CALLBACK EnumResTypeProc(HMODULE hMod, LPTSTR lpszType, LONG_PTR lParam) |
| 29 | { |
| 30 | std::vector<wchar_t*>* typeList = (std::vector<wchar_t*>*)lParam; |
| 31 | if (IS_INTRESOURCE(lpszType)) { |
| 32 | typeList->push_back(lpszType); |
| 33 | } else { |
| 34 | typeList->push_back(_wcsdup(lpszType)); |
| 35 | } |
| 36 | |
| 37 | return true; |
| 38 | } |
| 39 | |
| 40 | int CopyResourcesToStubExecutable(wchar_t* src, wchar_t* dest) |
| 41 | { |
nothing calls this directly
no outgoing calls
no test coverage detected