DNF_DLL/test/Detours/samples/echo/echonul.cpp

19 lines
187 B
C++
Raw Normal View History

2022-09-06 00:08:26 +08:00
//
//
//
#include <windows.h>
int WINAPI Echo(PCSTR pszMsg)
{
int sum = 0;
while (*pszMsg) {
sum = sum + *pszMsg++;
}
return sum;
}
int main()
{
return 0;
}