Re: problem with microsoft C compiler doesn`t accept things gcc does, how to solve? (encoding)
Zachary Turner wrote:
On Jul 17, 10:57 am, "Default User" <defaultuse...@yahoo.com> wrote:
Michael Reichenbach wrote:
Ok. You got me. :) It`s was not the real code. I always try to cut
down my problem to a minimum so it`s more easy to figure out.
That's a good idea, but what you post has to be a complete program.
Here is a new example code. I tested it. It works in DevCpp but not
in Visual Studio.
#include <stdlib.h>
#include <windows.h>
int main()
{
WIN32_FIND_DATA FindFileData;
HANDLE hFind;
hFind = FindFirstFile("c://test", &FindFileData);
system("PAUSE");
return EXIT_SUCCESS;
}
This compiled on gcc?
gcct.c:2:21: windows.h: No such file or directory
gcct.c:7: warning: data definition has no type or storage class
gcct.c:8: error: `FindFileData' undeclared here (not in a function)
gcct.c:8: error: initializer element is not constant
gcct.c:8: warning: data definition has no type or storage class
gcct.c:9: error: parse error before string constant
gcct.c:9: warning: data definition has no type or storage class
Brian
Sorry, but now you're just being stupid. There's two possibilities
here.
1) You are on [..]
It does not matter what the possibilities are. The program is OS-
specific and the alleged behaviour is compiler-specific, so there is
no way to answer it from the language point of view. The FAQ does
contain a list of suggested newsgroups to post to to have platform-
and/or compiler-specific questions answered.
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask