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

推荐订阅源

G
Google Developers Blog
宝玉的分享
宝玉的分享
月光博客
月光博客
B
Blog
云风的 BLOG
云风的 BLOG
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
aimingoo的专栏
aimingoo的专栏
N
Netflix TechBlog - Medium
博客园_首页
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
A
About on SuperTechFans
Y
Y Combinator Blog
L
LangChain Blog
有赞技术团队
有赞技术团队
D
Docker
爱范儿
爱范儿
博客园 - 司徒正美
H
Hackread – Cybersecurity News, Data Breaches, AI and More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
Microsoft Security Blog
Microsoft Security Blog
D
DataBreaches.Net

博客园 - 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();
     }
  
  }