mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
* Fixing upper/lower case for includes types.h, zconf.h and zlib.h were renamed so that global includes like Types.h are not used.
19 lines
291 B
C
19 lines
291 B
C
#ifndef _XML_SENDERNAMELIST_H
|
|
#define _XML_SENDERNAMELIST_H
|
|
|
|
#include "types.h"
|
|
|
|
#define MAX_SENDER_NAMES_CHARS 128
|
|
|
|
typedef struct
|
|
{
|
|
UINT16 uiIndex;
|
|
CHAR16 Name[MAX_SENDER_NAMES_CHARS];
|
|
|
|
} SENDER_NAMES_VALUES;
|
|
|
|
extern SENDER_NAMES_VALUES zSenderNameList[500];
|
|
|
|
|
|
#endif
|