#include "common.h" void StepCompileProgress(void){ extern HWND hMainDlg; PostMessage(GetDlgItem(hMainDlg,IDC_PROGRESS),PBM_STEPIT,0,0); } void Delete_ci(CONSTINFO *pci){ int i; HeapDefaultFree(pci->name); if(pci->StrValue) HeapDefaultFree(pci->StrValue); if(pci->ParmNum){ for(i=0;iParmNum;i++) HeapDefaultFree(pci->ppParm[i]); HeapDefaultFree(pci->ppParm); } if(pci->pNextData){ Delete_ci(pci->pNextData); } HeapDefaultFree(pci); } void DeleteConstInfo(CONSTINFO **ppConstHash){ int i; for(i=0;i