mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 06:30:37 +00:00
widl: Make the generated string pointers const as well.
This commit is contained in:
parent
87ca1b9416
commit
d560b7bbb0
@ -3348,7 +3348,7 @@ void write_endpoints( FILE *f, const char *prefix, const str_list_t *list )
|
||||
const char *p;
|
||||
|
||||
/* this should be an array of RPC_PROTSEQ_ENDPOINT but we want const strings */
|
||||
print_file( f, 0, "static const unsigned char * %s__RpcProtseqEndpoint[][2] =\n{\n", prefix );
|
||||
print_file( f, 0, "static const unsigned char * const %s__RpcProtseqEndpoint[][2] =\n{\n", prefix );
|
||||
LIST_FOR_EACH_ENTRY( endpoint, list, const struct str_list_entry_t, entry )
|
||||
{
|
||||
print_file( f, 1, "{ (const unsigned char *)\"" );
|
||||
|
Loading…
Reference in New Issue
Block a user