mirror of
https://github.com/Relintai/scons_gd.git
synced 2025-03-20 19:12:32 +01:00
10 lines
206 B
C++
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;
|
|
} |