summaryrefslogtreecommitdiff
path: root/src/nativeresources/resourcestring.h
blob: c4b1d30e74987cc98d5ada9370036eaef054cc0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

#ifndef __RESOURCE_STRING_H_
#define __RESOURCE_STRING_H_

// Struct to contain a resource ID and its corresponding 
// English language string.
struct NativeStringResource
{
    unsigned int resourceId;
    const char* resourceString;
};

struct NativeStringResourceTable
{
    const int size;
    const NativeStringResource *table;
};

int LoadNativeStringResource(const NativeStringResourceTable &nativeStringResourceTable, unsigned int iResourceID, char16_t* szBuffer, int iMax, int *pcwchUsed);

#define CONCAT(a, b) a ## b

#define NATIVE_STRING_RESOURCE_TABLE(name) CONCAT(nativeStringResourceTable_, name)

#define DECLARE_NATIVE_STRING_RESOURCE_TABLE(name) \
    extern const NativeStringResourceTable NATIVE_STRING_RESOURCE_TABLE(name)

#endif // __RESOURCE_STRING_H_