Hello,
I am writing a SMS Message handler similar to microsofts mapirule client. I wrote an exe that registers the DLL (in C#, the actual unmanaged code does the message handling). It appears to succeed when I debug, but when I run it on smart phones, the DLL must never get loaded or something because it doesnt work at all.
Here is what I based it off of
http://msdn2.microso...y/aa446561.aspx
I basically changed the C# interface to no longer be a windows app, but just a console program launched once to register. Below is the basic code.
static void Main(string[] args)
{
LoadLibrary("mapirule.dll");
DllRegisterServer();
}
Both appear to succeed but the program only works on PPC and not on smart phones. Does anyone have any idea why this weould be? THis is runnign on windows mobile 5.0.
Thanks
Brian
I am writing a SMS Message handler similar to microsofts mapirule client. I wrote an exe that registers the DLL (in C#, the actual unmanaged code does the message handling). It appears to succeed when I debug, but when I run it on smart phones, the DLL must never get loaded or something because it doesnt work at all.
Here is what I based it off of
http://msdn2.microso...y/aa446561.aspx
I basically changed the C# interface to no longer be a windows app, but just a console program launched once to register. Below is the basic code.
static void Main(string[] args)
{
LoadLibrary("mapirule.dll");
DllRegisterServer();
}
Both appear to succeed but the program only works on PPC and not on smart phones. Does anyone have any idea why this weould be? THis is runnign on windows mobile 5.0.
Thanks
Brian







Sign In
Create Account

Back to top









