//*********************************************************************
// //
// SQL Power Injector 1.2 Copyright (c) 2006-2007 Francois Larouche //
// //
// Author : francois.larouche@sqlpowerinjector.com //
// Web Site: www.sqlpowerinjector.com //
// //
//*******************************************************************//
using System;
namespace SQLPowerInjector{
/// <summary>
/// Summary description for IWordThreadCaller.
/// </summary>
public interface IWordThreadCaller
{
void GetWordWithThread(int threadNumber, bool isSilentMode, string currentValueFromVariableRange);
}
}
|