search for: lpsystemtim

Displaying 1 result from an estimated 1 matches for "lpsystemtim".

Did you mean: lpsystemtime
2006 Mar 02
1
Error while compiling code using wineg++ / winegcc
Hi!! I am not able to compile a test program on solaris using winegcc tool. Can anybody help? Here's the program source code: // file test.cpp #include <stdio.h> #include <windows.h> int main () { SYSTEMTIME lpSystemTime; GetSystemTime(&lpSystemTime); printf("Today is: %d/%d/%d\n", lpSystemTime.wYear, lpSystemTime.wMonth, lpSystemTime.wDay); return 0; } When I try to compile it using winegcc, it gives following error message: testuser@testbox:~/test...