惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Martin Fowler
Martin Fowler
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Security Blog
Microsoft Security Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园_首页
腾讯CDC
D
Docker
The Cloudflare Blog
量子位
爱范儿
爱范儿
L
LangChain Blog
博客园 - 三生石上(FineUI控件)
博客园 - 司徒正美
aimingoo的专栏
aimingoo的专栏
Blog — PlanetScale
Blog — PlanetScale
Jina AI
Jina AI
Apple Machine Learning Research
Apple Machine Learning Research
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
Vercel News
Vercel News
MyScale Blog
MyScale Blog

博客园 - apple0809

推箱子 directshow DirectShow 65 410 画图 VARIANT - apple0809 - 博客园 wince5.0 光标 得到dialog的hdc hdc - apple0809 - 博客园 VS2005 WTL add ATL error! Solution..... 启动exe - apple0809 - 博客园 文件系统 兴趣 兴趣 兴趣。 兴趣 期望
wince 注册 com组件 - apple0809
apple0809 · 2009-11-24 · via 博客园 - apple0809

  LPCTSTR lpszDllPath = _T("Residentflash\\xxx.dll");
  
  HMODULE hDLL = LoadLibrary(lpszDllPath);
  if (NULL == hDLL)
  { 
     MessageBox(_T("Fail"), _T("Error"), MB_OK);
  }
  else
  { 
     FARPROC pfn = GetProcAddress(hDLL, L"DllRegisterServer"); 
     if (NULL != pfn) 
     { 
        MessageBox(_T("OK"),_T("OK"), MB_OK); 

      pfn();
     }
  
  }