I\'m trying to capture an event and reference a GUID to see which event it is. The code is below:
DWORD WINAPI AvisionEventProc(LPVOID lpParam){
//HANDL
The DEFINE_GUID
macro either defines a named GUID
as a static, or just does a forward declaration to actually be done somewhere else. Your code perhaps only have the latter, and the symbols don't have actual initialization within the project.
See:
#include <initguid.h>
should be added. That will help.