in a windows 32bit application (non-console) the part in the WinMain function: LPSTR lpCmdLine is the command line. how do i use this if i want to test to see if it is equal to /full

i tried

if (lpCmdLine == "/full") {

}

but dat dont seem to work.