Update ComClass declaration

This commit is contained in:
Paul Tucker
2000-05-22 05:51:04 +00:00
parent 34b7814957
commit 82c9bb8579
2 changed files with 8 additions and 6 deletions

View File

@@ -1,3 +1,7 @@
20000522-01:51 DST Paul Tucker <ptucker@sympatico.ca>
* include/hbcomp.h
* adjust declaration of COMCLASS and COMDECLARE
20000521-21:50 GMT-8 Ron Pinkas <Ron@Profit-Master.com>
* source/compiler/harbour.y

View File

@@ -91,22 +91,20 @@ typedef struct _COMDECLARED
BYTE cType;
BYTE * cParamTypes;
USHORT iParamCount;
struct _COMCLASS { char * szName; struct _COMDECLARED * pMethod; struct _COMCLASS * pNext; struct _COMDECLARED * pLast; } * pClass;
struct _COMCLASS * pClass;
struct _COMCLASS * ( * pParamClasses );
struct _COMDECLARED * pNext; /* pointer to the next declared function */
} COMDECLARED, * PCOMDECLARED;
/*
/* Declared Class support structure */
typedef struct _COMCLASS
{
char * szName;
PCOMDECLARED pMethod;
struct _COMCLASS * pNext;
PCOMDECLARED pLast;
} COMCLASS, * PCOMCLASS;
*/
/* Declared Class support structure */
typedef struct _COMCLASS COMCLASS, * PCOMCLASS;
/* locals, static, public variables support */
typedef struct _VAR