这是我在Visual Studio 2010中的代码的一部分。但是,我获得了#34; IntelliSense:标识符" GetTickCount"未定义"来自编译器。我不知道如何解决它。
typedef enum {FALSE = 0, TRUE} BOOL;
int main(int argc, char* argv[]){
double current_Time;
current_Time = GetTickCount()/1000.0 - start/1000;
....
这些是我在代码中的包含
#include <stdio.h>
#include <time.h>
#include <math.h>
#include <stdlib.h>
#include <conio.h>
答案 0 :(得分:2)
在标题中包含windows.h文件..