Define TAG macro before use.

That fixes build

svn path=/trunk/; revision=35843
This commit is contained in:
Pierre Schweitzer 2008-08-31 19:15:06 +00:00
parent f558d87092
commit d9f427a1eb

View file

@ -145,6 +145,10 @@ MiGetMediaState(PADAPTER Adapter);
#define BREAKPOINT
#endif
#ifndef TAG
#define TAG(A, B, C, D) (ULONG)(((A)<<0) + ((B)<<8) + ((C)<<16) + ((D)<<24))
#endif
/* memory pool tag */
#define PCNET_TAG TAG('P', 'c', 'N', 't')