question regarding SetWindowsHooksEx

  • Thread starter Thread starter priyanka
  • Start date Start date
P

priyanka

when I set a shell hook in WIN98 I don't get an entry of
any application in taskbar during my program execution.
same code runs without any problem in win 2000.

Also there is a problem with ReadDirectoryChangesW API in
win2000. It is not recognising a api & gives UNDECLARE
IDENTIFIRE error evenhough there is declaration for the
same in WINBASE.H
 
priyanka said:
when I set a shell hook in WIN98 I don't get an entry of
any application in taskbar during my program execution.
same code runs without any problem in win 2000.

You may find help in the

microsoft.public.platformsdk.shell

group.
Also there is a problem with ReadDirectoryChangesW API in
win2000. It is not recognising a api & gives UNDECLARE
IDENTIFIRE error evenhough there is declaration for the
same in WINBASE.H

Did you remember to #define _WIN32_WINNT before you included <windows.h>?

Regards,
Will
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top