#include "stdafx.h"
#include "Refresh.h"
#include "RefreshDlg.h"
#include <Windows.h>
Function is SendMessage( args...
Errors:
C:\WinInternals\Refresh\RefreshDlg.cpp(192) : error C2660:
'SendMessageA' : function does not take 4 parameters
I dont know what to do anymore, since SendMessage() does take 4
arguments when you look at the DDK guide.
Help......
That other version of SendMessage is part of MFC.
Non-MFC apps don't have to do anything special to
call APIs. Where an MFC class function exists with
the same name as an API function, just prefix the API
function name with the scope resolution operator, like
so:
::SendMessage
This is a standard C++ operator that says to look in
the global namespace for the function SendMessage.
>
>
>Thanks very much.
>
>