- 博客(3)
- 收藏
- 关注
原创 在EXE程序中调用DLL文件后出现_CrtIsValidHeapPointer(pUserData)问题的解决方法
在dll文件中动态分配内存时使用HeapCreate函数,而不能使用new操作符,详见MSDN中的说明。
2011-02-10 23:34:00 570
原创 为何GetProcAddress()返回为空?
编写了一个DLL文件,其中有函数__declspec(dllexport) void Function();然后在程序中如下调用该函数:typedef void (*MYFUNCTION)(void);HINSTANCE hInstance;MYFUNCTION func;hInstance = ::LoadLibrary("dllname.dll");func = (MYFUNCTION)GetProcAddress(hInstance, "FunctionName"); //获取函数的
2011-01-31 22:59:00 3377
原创 修改view类的背景颜色
在view类相应擦出背景的消息,然后在其响应函数中添加如下代码:BOOL CTestView::OnEraseBkgnd(CDC* pDC) { // TODO: Add your message handler code here and/or call default CDC memDC; CRect rect; CBrush brush, *pBrush; CBitmap bit
2007-12-25 21:15:00 647
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人