blob: 354b5f1133fa089e8e7d7be14a187b241d3b4161 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#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;
}
|