none
windows Embedded visual c++报错 RRS feed

  • 问题

  • 我就用windows Embedded visual c++(第一次安装并使用)写了这些代码:

    #include<stdio.h>
    void main()
    {
     printf("fsdiajfgv");
    }

    一编译就报错:

    E:\wince代码\test.cpp(0) : fatal error C1001: INTERNAL COMPILER ERROR
            (compiler file '.\pdbmgr.cpp', line 113)
             Please choose the Technical Support command on the Visual C++
             Help menu, or open the Technical Support help file for more information
    Error executing cl.exe

    什么情况?

    2011年9月7日 0:19

答案

  • // Console.cpp : Defines the entry point for the application.
    //

    #include "stdafx.h"

    int WINAPI WinMain( HINSTANCE hInstance,
         HINSTANCE hPrevInstance,
         LPTSTR    lpCmdLine,
         int       nCmdShow)
    {
      // TODO: Place code here.

     return 0;
    }

     


    Leo.Zheng
    2011年9月7日 4:06

全部回复