public int AdviseFileChange(string pszMkDocument, uint grfFilter, IVsFileChangeEvents pFCE, out uint pvsCookie)
		{
			pvsCookie = 0;
			return VSConstants.S_OK;
		}
 public int AdviseFileChange(string pszMkDocument, uint grfFilter, IVsFileChangeEvents pFCE, out uint pvsCookie)
 {
     pvsCookie = 0;
     return(VSConstants.S_OK);
 }
		public int AdviseDirChange(string pszDir, int fWatchSubDir, IVsFileChangeEvents pFCE, out uint pvsCookie)
		{
			pvsCookie = 0;
			return VSConstants.S_OK;
		}
 public int AdviseDirChange(string pszDir, int fWatchSubDir, IVsFileChangeEvents pFCE, out uint pvsCookie)
 {
     pvsCookie = 0;
     return(VSConstants.S_OK);
 }