首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >缺少esent.h

缺少esent.h
EN

Stack Overflow用户
提问于 2011-03-14 13:07:45
回答 1查看 372关注 0票数 0

我正在尝试运行这个程序,但我一直收到错误消息"esent.h没有这样的文件或目录“

代码语言:javascript
复制
#undef JET_VERSION
#define JET_VERSION 0x0501

#include <stdio.h>
#include <string.h>
#include <esent.h>

// One possible error-handling strategy is to jump to an error-handling
// label whenever an ESENT call fails.
#define Call(func) { \
       err = (func); \
       if(err < JET_errSuccess) { \
       goto HandleError; \
       } \
} \

int main(int argc, char * argv[]) {
       JET_ERR err;
       JET_INSTANCE instance;
       JET_SESID sesid;
       JET_DBID dbid;
       JET_TABLEID tableid;

       JET_COLUMNDEF columndef = {0};
       JET_COLUMNID columnid;

可能的问题是什么?

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2011-05-16 20:25:38

我安装了MS Visual Studio的速成版,包含esent.h没有问题。也许你应该试试这个,因为它是免费的(供个人使用)。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/5294962

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档