Hi, I want to create a DLL for Pocket PC but I am not sure how to get started, as the Wizard is only for WIN32 DLL creation. I want, for example, 2 functions to be exported.
int Add(int a, int b)
{
return a+b;
}
int Subtract(int a, int b)
{
return b-a;
}
How would I export per say those above functions for Pocket PC? And, are they coded right in C?
Thank you very much.