Hi,
I successfully use VisualGDB and VisualDDK and now i am testing VisualKernel before to buy it.
If we create kernel project named “lkm-1”, the wizard will generate wrong function names (for compiler).
Example:
=================
static int __init lkm-1_init(void)
{
printk("lkm-1: Hello, world!n");
return 0;
}
static void __exit lkm-1_exit(void)
{
printk("lkm-1: Goodbye, world!n");
}
module_init(lkm-1_init);
module_exit(lkm-1_exit);
=================
The symbol ‘-‘ is wrong for function and variable names, but right for file names.
Can you fix the wizard to replace such symbols with ‘_’ for generated functions/variables?
I am not sure, but i think that i have seen this bug in VisualGDB and VisualDDK wizard too.
As an additional question:
Do you plan to release new versions of VisualDDK? I need VisualDDK for Visual Studio 2013.
Even if it becomes commercial, I probably would buy its license.
Thanks.