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
 
Back
Top