what will happen if i create a win32app without the following line?

PHP Code:
            hAccelTable LoadAccelerators(hInst"MapCE");

            
// Main message loop:
            
while (GetMessage(&msgNULL00)) 
            {
                if (!
TranslateAccelerator(msg.hwndhAccelTable, &msg)) 
                {
                    
TranslateMessage(&msg);
                    
DispatchMessage(&msg);
                }
            }
            return 
msg.wParam
Will my app still receive all the window messages?

regards,