1 2 3 4 5 6 7 8 9 10 11 12 13 14
// SPDX-License-Identifier: MIT // // Copyright The SCons Foundation #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; }