Hi, I have the following WINAPI event,
I get errors in visual studio 2008,
'WLX_SAS_TYPE_C TRL_ALT_DEL' : undeclared identifier
'WLX_SAS_ACTION _NONE' : undeclared identifier
'GWlxLoggedOnSA S': identifier not found
What should I include in a project, and how would I call int WINAPI WlxLoggedOnSAS function with 3 parameters, what should they be?
Thanks in advance...
Code:
int WINAPI WlxLoggedOnSAS(PVOID pWlxContext,DWORD dwSasType,PVOID pReserved) { if (dwSasType == WLX_SAS_TYPE_CTRL_ALT_DEL) { // Add additional code of you own return WLX_SAS_ACTION_NONE; } else return GWlxLoggedOnSAS( pWlxContext, dwSasType, pReserved ); }
'WLX_SAS_TYPE_C TRL_ALT_DEL' : undeclared identifier
'WLX_SAS_ACTION _NONE' : undeclared identifier
'GWlxLoggedOnSA S': identifier not found
What should I include in a project, and how would I call int WINAPI WlxLoggedOnSAS function with 3 parameters, what should they be?
Thanks in advance...
Comment