Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Following part of code in c++ should probably generate and send a message that left-click was performed.

The only problem is : error : 'INPUT' does not name a type.

#include <sstream>
#include <string>
#include <windows.h>

#define ID_BUTTON 1
#define ID_BUTTON2 2

const LPCSTR classname = "Moja Klasa";
bool Przyc = false;
HWND MainWindow;
HWND Button, Button2, Button3;
HWND TextBox;
INPUT Click;

LRESULT CALLBACK WindowEventProc(HWND hWindow, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
    switch(uMsg)
    {

        case WM_LBUTTONDOWN:
        {
            Przyc = true;
            SendMessage (MainWindow, WM_MOUSEMOVE, wParam, lParam);
        }
        break;

        case WM_LBUTTONUP:
            Przyc = false;
            SetCursorPos(600,600);
            break;

        case WM_MOUSEMOVE:
        if (Przyc)
        {
            ZeroMemory (&Click, sizeof(INPUT));
            Click.type = INPUT_MOUSE;
            Click.mi.dwFlags = MOUSEEVENTF_LEFTDOWN;
            SendInput (1, &Click, sizeof(INPUT));
            std::stringstream ss;
            ss << LOWORD(lParam) << " : " << HIWORD(lParam);
            std::string x = ss.str();
            SetWindowText(MainWindow,x.c_str());
            HDC hdc = GetDC (MainWindow);
            SetPixel (hdc, LOWORD(lParam), HIWORD(lParam), RGB (255, 0, 0));
            ReleaseDC (MainWindow, hdc);
        }
        break;
        case WM_DESTROY:
            PostQuitMessage(0);
            break;
        case WM_COMMAND:
            switch(wParam)
            {
                case ID_BUTTON:
                    MessageBox(MainWindow,"Nacisn¹³eœ przycisk!", "xD", MB_ICONINFORMATION);
                    break;
                case ID_BUTTON2:
                    DWORD dlugosc = GetWindowTextLength (TextBox);
                    LPSTR bufor = (LPSTR) GlobalAlloc(GPTR, dlugosc+1);
                    GetWindowText(TextBox, bufor, dlugosc+1);
                    MessageBox(MainWindow,bufor, bufor, MB_ICONASTERISK);
                    SetWindowText(TextBox,"");
                    if (IsDlgButtonChecked(MainWindow, ID_BUTTON) == BST_CHECKED)
                        CheckDlgButton(MainWindow, ID_BUTTON, BST_UNCHECKED);
                    else
                        CheckDlgButton(MainWindow, ID_BUTTON, BST_CHECKED);
                    break;
            }
            break;
        default:
            return DefWindowProc(hWindow, uMsg, wParam, lParam);
    }
    return 0;
}


int WINAPI  WinMain(HINSTANCE hInstance, HINSTANCE, LPSTR lpszCmdLine, int nCmdShow)
{
ZeroMemory(&BasicWindowClass, sizeof(WNDCLASSEX));
BasicWindowClass.cbSize = sizeof(WNDCLASSEX);
BasicWindowClass.hInstance = hInstance;
BasicWindowClass.lpszClassName = classname;
BasicWindowClass.lpfnWndProc = WindowEventProc;
BasicWindowClass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
BasicWindowClass.hCursor = LoadCursor(NULL, IDC_ARROW);
BasicWindowClass.hbrBackground = (HBRUSH) (COLOR_WINDOW);

if (!RegisterClassEx(&BasicWindowClass))
{
    MessageBox(NULL, "No memory!", NULL, MB_ICONEXCLAMATION | MB_OK);
    return 1;
}

MainWindow = CreateWindowEx(NULL,
                                 classname,
                                 "Labirynth",
                                 WS_OVERLAPPEDWINDOW | WS_VISIBLE,
                                 0,
                                 0,
                                 GetSystemMetrics(SM_CXSCREEN)/2,
                                 GetSystemMetrics(SM_CYSCREEN)/2,
                                 NULL,
                                 NULL,
                                 hInstance,
                                 NULL);

Button = CreateWindowEx(NULL,"BUTTON","Przycisk",WS_CHILD | WS_VISIBLE | BS_AUTOCHECKBOX, 100, 100, 100, 30, MainWindow, (HMENU)ID_BUTTON, hInstance, NULL);
Button2 = CreateWindowEx(WS_EX_CLIENTEDGE,"BUTTON","2nd Przycisk",WS_CHILD | WS_VISIBLE, 400, 100, 100, 100, MainWindow, (HMENU)ID_BUTTON2, hInstance, NULL);
TextBox = CreateWindowEx(WS_EX_CLIENTEDGE,"EDIT",NULL, WS_CHILD | WS_VISIBLE | WS_BORDER |
                         WS_VSCROLL | ES_AUTOVSCROLL | ES_MULTILINE, 200, 100, 100, 150, MainWindow, NULL, hInstance, NULL);

HWND hStatic = CreateWindowEx(0, "STATIC", NULL, WS_CHILD | WS_VISIBLE |
SS_LEFT, 250, 300, 150, 200, MainWindow, NULL, hInstance, NULL);
SetWindowText (hStatic, "Napis");

MSG Action;
while (GetMessage(&Action,NULL,0,0))
{
    TranslateMessage(&Action);
    DispatchMessage(&Action);

}
    return Action.wParam;
}   

I think it is a matter of some not included header files, but what else should be included, other than <windows.h>?

Don't try to see any point in program, it's just a bunch of random WinAPI features (i'm just trying to learn it). ;)

share|improve this question
What line are you getting the error on? And yes, INPUT is defined in Windows.h – Seth Carnegie Aug 28 '11 at 17:21
Please show the complete code. As Seth said, it defined in Windows.h. – Codo Aug 28 '11 at 17:24
Oh and also, "global" variables are only global to the file they're declared in (unless you use extern) – Seth Carnegie Aug 28 '11 at 17:28
2  
The identifier name is pretty generic, odds are good that it is getting whacked by a macro. Use the /P option and have a look at what happened to it. – Hans Passant Aug 28 '11 at 17:30
What happens if you put #undef INPUT after the #include lines? – Karel Petranek Aug 28 '11 at 18:55
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.