Initial MSVC 2008 projects workspace

This commit is contained in:
alexey.min
2012-02-01 05:25:08 +00:00
commit 03de3bdc95
1446 changed files with 476853 additions and 0 deletions

24
l2detect/NpcArray.h Normal file
View File

@@ -0,0 +1,24 @@
#ifndef H_NPC_ARRAY
#define H_NPC_ARRAY
#define NPCA_MAX_NPCS 512
extern L2Npc *npc_array[NPCA_MAX_NPCS];
void NpcArray_Init();
void NpcArray_Free();
void NpcArray_DeleteAll();
void NpcArray_AddNpcInfo( L2Npc *pNpcInfo );
void NpcArray_DelNPC( unsigned int objectID );
void NpcArray_DelNPCByIdx( int idx );
void NpcArray_Lock();
void NpcArray_Unlock();
int NpcArray_FindNPCByObjectID( unsigned int objectID );
int NpcArray_FindFreeIndex();
//void NpcArray_SetUpdateCommand( HWND hWnd, UINT uMsg );
#endif