vector 在vc.net中的使用

//分区表解析动态链接库

//sptt.h文件

#ifdef SEARCHPARTITION
#else
#define SEARCHPARTITION extern "C" _declspec(dllimport)
#endif

#include <vector>

typedef struct _PARTINFO_
{
    int fstype;
    unsigned long int  u64StartSector;
    unsigned long int  u64PartitonSizeOfSector;
}PARTINFO,*PPARTINFO;


SEARCHPARTITION int _stdcall SearchPartition(char *devicename,
                                                                         unsigned long int startsector,
                                                                         std::vector<PARTINFO> *partinfo);

//sptt.cpp文件

#define SEARCHPARTITION extern "C" _declspec(dllexport)
#include "sptt.h"

int _stdcall SearchPartition(char *devicename,
                                           unsigned long int startsector,
                                           std::vector<PARTINFO> *partinfo)
{
   return 0;
}

不知道是否是使用了_stdcall 的缘故,或者是使用了extern "C",在使用vector容器定义变量的时候,必须使用std::为前缀!

以上的问题已经弄明白,原因在于命名空间的引用上,在vc.net中正确的vector使用应该为:

1在stdafx.h中加入 #include <vector>

2在命名空间中加入   using   namespace   std;

 

你可能感兴趣的:(.net,vector,职场,休闲,vc.net)