Thread: need help on compiling a windwos project!

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Registered User ledow's Avatar
    Join Date
    Dec 2011
    Posts
    435
    What's wrong with the forum attach feature, or just snipping the first 100 lines into a comment.

    External website doesn't even load properly for me, and tries to make me play "guess the real download button from the fake advert".

    - Compiler warnings are like "Bridge Out Ahead" warnings. DON'T just ignore them.
    - A compiler error is something SO stupid that the compiler genuinely can't carry on with its job. A compiler warning is the compiler saying "Well, that's bloody stupid but if you WANT to ignore me..." and carrying on.
    - The best debugging tool in the world is a bunch of printf()'s for everything important around the bits you think might be wrong.

  2. #2
    بابلی ریکا Masterx's Avatar
    Join Date
    Nov 2007
    Location
    Somewhere nearby,Who Cares?
    Posts
    497
    Quote Originally Posted by ledow View Post
    What's wrong with the forum attach feature, or just snipping the first 100 lines into a comment.

    External website doesn't even load properly for me, and tries to make me play "guess the real download button from the fake advert".
    My apologies , I tried it several times to attach it here, for no specific reason, it kept failing! That made me upload it on an uploading site.
    any way here it is in a zip file.
    The solution consists of two projects one is a driver and one is an application which contacts the driver i guess,
    I set the subsystem of the driver project on native and the windows application (ConsCtl) as windows. and added the needed include libraries through properties. Yet still i am getting lots of errors!
    I also uploaded the converted visual studio 2010 version solution since the actual project belongs to vc++ 6 or something if i am not mistaken for those who want to see the code for themselves and incase to see if the conversion messed sth up.
    I would be grateful if anyone could help me on this
    Thanks in advance

    And by the way erros look like this :
    for example for the driver project itsel i get :
    Code:
    Error    1    error C2143: syntax error : missing ')' before 'const'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\crtdefs.h    543    1    ProcObsrv
    Error    2    error C2143: syntax error : missing '{' before 'const'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\crtdefs.h    543    1    ProcObsrv
    Error    3    error C2059: syntax error : ','    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\crtdefs.h    543    1    ProcObsrv
    Error    4    error C2059: syntax error : ')'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\crtdefs.h    543    1    ProcObsrv
    Error    5    error C2143: syntax error : missing ')' before 'const'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\crtdefs.h    550    1    ProcObsrv
    Error    6    error C2143: syntax error : missing '{' before 'const'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\crtdefs.h    550    1    ProcObsrv
    Error    7    error C2059: syntax error : ','    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\crtdefs.h    550    1    ProcObsrv
    Error    8    error C2059: syntax error : ')'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\crtdefs.h    550    1    ProcObsrv
    Error    9    error C2143: syntax error : missing ')' before 'type'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    56    1    ProcObsrv
    Error    10    error C2085: '_ExceptionRecord' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    56    1    ProcObsrv
    Error    11    error C2143: syntax error : missing ';' before 'type'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    57    1    ProcObsrv
    Error    12    error C2085: '_EstablisherFrame' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    57    1    ProcObsrv
    Error    13    error C2085: '_Inout_' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    58    1    ProcObsrv
    Error    14    error C2143: syntax error : missing ';' before 'type'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    58    1    ProcObsrv
    Error    15    error C2085: '_ContextRecord' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    58    1    ProcObsrv
    Error    16    error C2085: '_Inout_' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    59    1    ProcObsrv
    Error    17    error C2143: syntax error : missing ';' before 'type'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    59    1    ProcObsrv
    Error    18    error C2059: syntax error : ')'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    60    1    ProcObsrv
    Error    19    error C2085: '_DispatcherContext' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    60    1    ProcObsrv
    Error    20    error C2082: redefinition of formal parameter '_exception_code'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    104    1    ProcObsrv
    Error    21    error C2082: redefinition of formal parameter '_exception_info'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    105    1    ProcObsrv
    Error    22    error C2082: redefinition of formal parameter '_abnormal_termination'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\excpt.h    106    1    ProcObsrv
    Error    23    error C2061: syntax error : identifier '_Check_return_'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    92    1    ProcObsrv
    Error    24    error C2054: expected '(' to follow '_Check_return_'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    25    error C2143: syntax error : missing ')' before 'type'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    26    error C2085: '_isctype_l' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    27    error C2143: syntax error : missing ';' before 'type'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    28    error C2085: '_C' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    29    error C2085: '_In_' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    30    error C2143: syntax error : missing ';' before 'type'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    31    error C2085: '_Type' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    32    error C2085: '_In_opt_' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    33    error C2146: syntax error : missing ',' before identifier '_locale_t'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    34    error C2146: syntax error : missing ',' before identifier '_Locale'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    35    error C2059: syntax error : ')'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    93    1    ProcObsrv
    Error    36    error C2061: syntax error : identifier '_Check_return_'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    94    1    ProcObsrv
    Error    37    error C2086: 'int _Check_return_' : redefinition    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    38    error C2054: expected '(' to follow '_Check_return_'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    39    error C2143: syntax error : missing ')' before 'type'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    40    error C2085: '_isalpha_l' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    41    error C2143: syntax error : missing ';' before 'type'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    42    error C2085: '_C' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    43    error C2085: '_In_opt_' : not in formal parameter list    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    44    error C2146: syntax error : missing ',' before identifier '_locale_t'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    45    error C2146: syntax error : missing ',' before identifier '_Locale'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    46    error C2059: syntax error : ')'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    95    1    ProcObsrv
    Error    47    error C2061: syntax error : identifier '_Check_return_'    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    96    1    ProcObsrv
    Error    48    error C2086: 'int _Check_return_' : redefinition    G:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\include\ctype.h    97    1    ProcObsrv
    and it goes on like that
    and for the actual windows application i get errors like :
    Code:
    Error    1    error C2065: '_In_opt_z_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    543    1    ConsCtl
    Error    2    error C2143: syntax error : missing ')' before 'const'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    543    1    ConsCtl
    Error    4    error C2182: '_invalid_parameter' : illegal use of type 'void'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    543    1    ConsCtl
    Error    5    error C2491: '_invalid_parameter' : definition of dllimport data not allowed    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    543    1    ConsCtl
    Error    6    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    543    1    ConsCtl
    Error    7    error C2065: '_In_opt_z_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    550    1    ConsCtl
    Error    8    error C2143: syntax error : missing ')' before 'const'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    550    1    ConsCtl
    Error    10    error C2182: '_invoke_watson' : illegal use of type 'void'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    550    1    ConsCtl
    Error    11    error C2495: '_invoke_watson' : '__declspec(noreturn)' can only be applied to function declarations or definitions    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    550    1    ConsCtl
    Error    12    error C2491: '_invoke_watson' : definition of dllimport data not allowed    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    550    1    ConsCtl
    Error    13    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\crtdefs.h    550    1    ConsCtl
    Error    14    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\excpt.h    56    1    ConsCtl
    Error    15    error C2144: syntax error : '_EXCEPTION_RECORD' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\excpt.h    56    1    ConsCtl
    Error    16    error C2448: '_except_handler' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\excpt.h    56    1    ConsCtl
    Error    17    error C2144: syntax error : 'void' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\excpt.h    57    1    ConsCtl
    Error    18    error C2144: syntax error : '_CONTEXT' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\excpt.h    58    1    ConsCtl
    Error    19    error C2144: syntax error : 'void' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\excpt.h    59    1    ConsCtl
    Error    20    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\excpt.h    60    1    ConsCtl
    Error    21    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    49    1    ConsCtl
    Error    22    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    51    1    ConsCtl
    Error    23    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    53    1    ConsCtl
    Error    24    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    157    1    ConsCtl
    Error    25    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    158    1    ConsCtl
    Error    26    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    159    1    ConsCtl
    Error    27    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    160    1    ConsCtl
    Error    28    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    161    1    ConsCtl
    Error    29    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    164    1    ConsCtl
    Error    30    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    165    1    ConsCtl
    Error    31    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    167    1    ConsCtl
    Error    32    error C2143: syntax error : missing ';' before '*'    g:\winddk\7600.16385.1\inc\api\windef.h    168    1    ConsCtl
    Error    33    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    92    1    ConsCtl
    Error    34    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    92    1    ConsCtl
    Error    35    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    92    1    ConsCtl
    Error    36    error C2448: '_isctype' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    92    1    ConsCtl
    Error    37    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    92    1    ConsCtl
    Error    38    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    92    1    ConsCtl
    Error    39    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    93    1    ConsCtl
    Error    40    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    93    1    ConsCtl
    Error    41    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    93    1    ConsCtl
    Error    42    error C2448: '_isctype_l' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    93    1    ConsCtl
    Error    43    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    93    1    ConsCtl
    Error    44    error C2146: syntax error : missing ';' before identifier '_locale_t'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    93    1    ConsCtl
    Error    45    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    93    1    ConsCtl
    Error    46    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    94    1    ConsCtl
    Error    47    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    94    1    ConsCtl
    Error    48    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    94    1    ConsCtl
    Error    49    error C2448: 'isalpha' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    94    1    ConsCtl
    Error    50    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    94    1    ConsCtl
    Error    51    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    95    1    ConsCtl
    Error    52    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    95    1    ConsCtl
    Error    53    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    95    1    ConsCtl
    Error    54    error C2448: '_isalpha_l' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    95    1    ConsCtl
    Error    55    error C2146: syntax error : missing ';' before identifier '_locale_t'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    95    1    ConsCtl
    Error    56    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    95    1    ConsCtl
    Error    57    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    96    1    ConsCtl
    Error    58    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    96    1    ConsCtl
    Error    59    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    96    1    ConsCtl
    Error    60    error C2448: 'isupper' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    96    1    ConsCtl
    Error    61    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    96    1    ConsCtl
    Error    62    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    97    1    ConsCtl
    Error    63    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    97    1    ConsCtl
    Error    64    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    97    1    ConsCtl
    Error    65    error C2448: '_isupper_l' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    97    1    ConsCtl
    Error    66    error C2146: syntax error : missing ';' before identifier '_locale_t'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    97    1    ConsCtl
    Error    67    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    97    1    ConsCtl
    Error    68    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    98    1    ConsCtl
    Error    69    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    98    1    ConsCtl
    Error    70    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    98    1    ConsCtl
    Error    71    error C2448: 'islower' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    98    1    ConsCtl
    Error    72    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    98    1    ConsCtl
    Error    73    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    99    1    ConsCtl
    Error    74    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    99    1    ConsCtl
    Error    75    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    99    1    ConsCtl
    Error    76    error C2448: '_islower_l' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    99    1    ConsCtl
    Error    77    error C2146: syntax error : missing ';' before identifier '_locale_t'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    99    1    ConsCtl
    Error    78    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    99    1    ConsCtl
    Error    79    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    100    1    ConsCtl
    Error    80    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    100    1    ConsCtl
    Error    81    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    100    1    ConsCtl
    Error    82    error C2448: 'isdigit' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    100    1    ConsCtl
    Error    83    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    100    1    ConsCtl
    Error    84    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    101    1    ConsCtl
    Error    85    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    101    1    ConsCtl
    Error    86    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    101    1    ConsCtl
    Error    87    error C2448: '_isdigit_l' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    101    1    ConsCtl
    Error    88    error C2146: syntax error : missing ';' before identifier '_locale_t'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    101    1    ConsCtl
    Error    89    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    101    1    ConsCtl
    Error    90    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    102    1    ConsCtl
    Error    91    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    102    1    ConsCtl
    Error    92    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    102    1    ConsCtl
    Error    93    error C2448: 'isxdigit' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    102    1    ConsCtl
    Error    94    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    102    1    ConsCtl
    Error    95    error C2144: syntax error : 'int' should be preceded by ';'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    103    1    ConsCtl
    Error    96    error C2065: '_In_' : undeclared identifier    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    103    1    ConsCtl
    Error    97    error C2144: syntax error : 'int' should be preceded by ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    103    1    ConsCtl
    Error    98    error C2448: '_isxdigit_l' : function-style initializer appears to be a function definition    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    103    1    ConsCtl
    Error    99    error C2146: syntax error : missing ';' before identifier '_locale_t'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    103    1    ConsCtl
    Error    100    error C2059: syntax error : ')'    g:\program files (x86)\microsoft visual studio 10.0\vc\include\ctype.h    103    1    ConsCtl
    plus another 900+ erros!
    Attached Files Attached Files
    Last edited by Masterx; 01-09-2014 at 11:20 AM.
    Highlight Your Codes
    The Boost C++ Libraries (online Reference)

    "...a computer is a stupid machine with the ability to do incredibly smart things, while computer programmers are smart people with the ability to do incredibly stupid things. They are,in short, a perfect match.."
    Bill Bryson


Popular pages Recent additions subscribe to a feed

Similar Threads

  1. help whit encoding files in windwos forms
    By chikaij in forum C++ Programming
    Replies: 11
    Last Post: 03-02-2010, 11:32 AM
  2. Need Help Compiling A VC++ 6 Project In Dev C++ 4.9.9.2
    By shen747 in forum C++ Programming
    Replies: 10
    Last Post: 09-17-2009, 09:52 PM
  3. have some difficulty compiling a project
    By Masterx in forum C++ Programming
    Replies: 1
    Last Post: 04-04-2009, 07:49 AM
  4. Error while compiling a C++ Project with Dev-C++ 5
    By mf_Greg in forum C++ Programming
    Replies: 1
    Last Post: 03-24-2008, 05:45 PM
  5. compiling project
    By l2u in forum C++ Programming
    Replies: 2
    Last Post: 05-09-2007, 10:57 AM

Tags for this Thread