in tools/servicefabric_enums_to_strings_generator/Program.cs [51:74]
static void writeSourceHeader(StreamWriter outputHeaderFile)
{
outputHeaderFile.Write(
@"// Copyright (C) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
/*THIS FILE IS GENERATED, DO NOT EDIT BY HAND!!!*/
/*generator is called ""servicefabric_enums_to_strings_generator""*/
#include <stddef.h> // for NULL, size_t
#include ""macro_utils/macro_utils.h""
#include ""fabrictypes.h""
#include ""sf_c_util/servicefabric_enums_to_strings.h""
typedef struct SF_ENUM_AND_STRING_TAG
{
int value;
const char* valueAsString;
} SF_ENUM_AND_STRING;
");
}