2009-03-08 文字列リソースを使う C言語 WINDOWS #include <windows.h> #include "resource.h" #include <stdio.h> int main() { char buf[BUFSIZ]; LoadStringA(NULL, IDS_STRING101, buf, BUFSIZ); puts(buf); return 0; } テスト 続行するには何かキーを押してください . . .