Hi,
This is about a Windows Mobile 6 issue, but related to C code and, always, windows context (also, Visual Studio 2008 and the WM6 Pro SDK). I try to replace the hourglass cursor with a customized one by using the following function from a C dll:

Code:
void ChangeWaitCursor(){
HINSTANCE hInst=AfxGetInstanceHandle(); 

HCURSOR hWait1;

hWait1 = LoadAnimatedCursor( hInst, (DWORD) IDB_BITMAP1, 2, 500);

SetCursor(hWait1);}
I get a link error related to the fact the it can't open the cursor.lib file. I was looking to reference this library but no trace of it in the SDK.
Thanks for any idea!