scons_gd/scons/test/MSVC/msvc_fixture/test.cpp
2022-10-15 16:06:26 +02:00

10 lines
206 B
C++

#include "StdAfx.h"
#include "resource.h"
int main(void)
{
char test[1024];
LoadString(GetModuleHandle(NULL), IDS_TEST, test, sizeof(test));
printf("%d %s\n", IDS_TEST, test);
return 0;
}