Hi everyone,
I want to add a property page to my PCIe driver. Driver just controls some GPIOs on a module and I want to control those GPIOs through a property page in the device properties.
I can't find any working sample project that uses EnumPropPages32. I already developed a code that handles the callback such as:
BOOL APIENTRY PortsAccessPropPageProvider(PSP_PROPSHEETPAGE_REQUEST pPropPageRequest,
LPFNADDPROPSHEETPAGE fAddFunc,
LPARAM lParam)
{
...
}
I dont see any page on the device properties but this is not the problem. I don't think property page provider DLL is loaded at all. I see the "Property Page Provider" in the driver details however the debug messages I placed in basically everywhere is not displayed on the DebugView.
What might be the issue? I would appreciate any help.