Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Updated SDK: Quibbles

Charles Dye

Super Moderator
May
4,947
126
Staff member
The updated TakeCommand.h has:

LPVOID WINAPI AllocMem( unsigned int * puSize );

Shouldn't that be:

LPVOID WINAPI AllocMem( unsigned int puSize );


Also, I think that:

BOOL WINAPI QueryIsTCMD( void );

should be:

BOOL __cdecl QueryIsTCMD( void );
 
Also: PlugIn.h gives a 2K Unicode-characters maximum length for the pszArguments string passed to/from plugin commands, functions, and variables. Is this still true, or has the limit been increased since that was written?
 
On Thu, 27 Jan 2011 14:36:26 -0500, you wrote:

|The updated TakeCommand.h has:
|
| LPVOID WINAPI AllocMem( unsigned int * puSize );
|
|Shouldn't that be:
|
| LPVOID WINAPI AllocMem( unsigned int puSize );

That's an old one. As I recall, (int*) was once correct. I fixed it in my
TakeCmd.h more than a year ago.

|Also, I think that:
|
| BOOL WINAPI QueryIsTCMD( void );
|
|should be:
|
| BOOL __cdecl QueryIsTCMD( void );

That one is OK (__cdecl) in my TakeCmd.h. I don't remember fixing it (but that
doesn't mean I didn't).
 

Similar threads

Back
Top