summaryrefslogtreecommitdiffstats
path: root/test/MSVC/msvc_fixture/test.cpp
blob: edb2ef53845c368c5e1b7d1dad3b9b061e951b1d (plain)
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;
}