本文介绍了LoadLibrary失败,错误126的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有几行代码:

#include< iostream>
#include< Windows.h> #include< Certsrv.h>
using namespace std; void main()
{
    HMODULE  hinstDLL;
    hinstDLL = LoadLibrary(" Certadm.dll");

    if(NULL == hinstDLL)
    {
  &NBSP; &NBSP; printf("%d \ n",GetLastError());

   }
}

#include <iostream>#include <Windows.h> #include <Certsrv.h>using namespace std; void main() {    HMODULE  hinstDLL;    hinstDLL = LoadLibrary("Certadm.dll");    if (NULL == hinstDLL)    {       printf("%d\n",GetLastError());    } }

LoadLibrary失败,错误126.我的代码出了什么问题。任何人都可以帮助我。

谢谢,

迷你

推荐答案

此论坛适用于与VSTO加载项相关的问题。由于你的问题与C ++有关,我会把这个帖子移到
论坛。

This forum is for issues related to VSTO add-in. Since your issue is related to C++, I would move this thread intoC++ forum.

问候,

Celeste


这篇关于LoadLibrary失败,错误126的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-09 11:33