On my mission to send simple status messages to my G15 LCD display while a script is running I've come across the Logitech API in their SDK, along with its documentation.
The DLL is called lglcdapi.dll and according to the SDK manual the first thing that you need to do is initialise with:
So, I've simply written these 2 lines:lgLcdInit
The lgLcdInit() function initializes the Logitech LCD library. You must call this function prior to any other function of the library.
DWORD WINAPI lgLcdInit(void);
Parameters
None
Return Values
If the function succeeds, the return value is ERROR_SUCCESS.
...
Code: Select all
LibLoad>c:\LgLcdAPI.dll,lcd
LibFunc>lcd,lgLcdInit,T
I'm such a noob... can anyone point me in the right direction? I'm prepared to persevere but disappointed that I can't even get past this first basic step!
Thanks.