From ddba4ede6b451d0cfcd0d32b5180fbd0689966bf Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 10 Feb 2014 08:04:30 +0000 Subject: - HANDLE hContact => HCONTACT - GCF_* prefix was added to chat constants to avoid name conflicts git-svn-id: http://svn.miranda-ng.org/main/trunk@8078 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- include/m_chat.h | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'include/m_chat.h') diff --git a/include/m_chat.h b/include/m_chat.h index 0845defe19..7f02c687e1 100644 --- a/include/m_chat.h +++ b/include/m_chat.h @@ -492,15 +492,15 @@ struct GCEVENT */ // Flags -#define BYINDEX 0x0001 // iItem is valid and should contain the index of the session to get -#define BYID 0x0002 // pszID is valid and should contain the ID of the session to get. This is the default if no -#define HCONTACT 0x0004 // hContact is valid -#define DATA 0x0008 // wItemData is valid -#define ID 0x0010 // pszID is valid. -#define NAME 0x0020 // pszName is valid -#define TYPE 0x0040 // iType is valid -#define COUNT 0x0080 // iCount is valid -#define USERS 0x0100 // pszUsers is valid +#define GCF_BYINDEX 0x0001 // iItem is valid and should contain the index of the session to get +#define GCF_BYID 0x0002 // pszID is valid and should contain the ID of the session to get. This is the default if no +#define GCF_HCONTACT 0x0004 // hContact is valid +#define GCF_DATA 0x0008 // wItemData is valid +#define GCF_ID 0x0010 // pszID is valid. +#define GCF_NAME 0x0020 // pszName is valid +#define GCF_TYPE 0x0040 // iType is valid +#define GCF_COUNT 0x0080 // iCount is valid +#define GCF_USERS 0x0100 // pszUsers is valid // The GC_INFO structure struct GC_INFO @@ -515,7 +515,7 @@ struct GC_INFO int iCount; // count of users in the nicklist LPSTR pszUsers; // space separated string containing the UID's of the users in the user list. // NOTE. Use Mirandas mmi_free() on the returned string. - HANDLE hContact; // hContact for the session (can be NULL) + HCONTACT hContact; // hContact for the session (can be NULL) }; #define MS_GC_GETINFO "GChat/GetInfo" -- cgit v1.2.3