On Sun, 30 Aug 2009 11:48:02 -0500, rconn <> wrote:
|If it's not NULL, QueryIsPluginCommand copies the plugin name containing
|that command to the second argument.
|
|I can't think of any reason why you would ever call it with a non-NULL
|second argument. (For that matter, I can't really think of a reason why
|you would ever call it at all!)
What's copied to the buffer ... internal name, file name, FQ file name?
If it's simply the internal name, that could be used as a test of whether a
given plugin is already loaded (that's why I considered it).
if ( QueryIsPluginCommand(szMyCommand, szTmpName)
&& !lstrcmp(szMyName, szTmpName) ) /* already loaded */
--
- Vince