资源简介
简单使用纯C语言实现COM组件,帮助理解COM实现机制
代码片段和文件信息
// C source code to a simple COM object compiled into an ordinary
// dynamic link library (DLL).
#include
#include se.h>
#include “IExample.h“
// A count of how many objects our DLL has created (by some
// app calling our IClassFactory object‘s CreateInstance())
// which have not yet been Release()‘d by the app
static DWORD Outstandingobjects;
// A count of how many apps have locked our DLL via calling our
// IClassFactory object‘s LockServer()
static DWORD LockCount;
// The IExample object ////////////////////////////////////////////////////////////
// In our .H file we use a macro which defines our IExample struct
// as so:
//
// typedef struct {
// IExampleVtbl *lpVtbl;
// } IExample;
//
// In other wo
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 12212 2006-03-28 04:33 iexample\IExample.c
文件 78 2006-03-27 00:29 iexample\IExample.def
文件 4197 2006-03-27 01:34 iexample\IExample.dsp
文件 539 2006-03-24 13:55 iexample\IExample.dsw
文件 927 2006-03-27 22:06 iexample\IExample.h
文件 1914 2006-03-27 23:41 iexampleapp\IExampleApp.c
文件 4342 2006-03-24 13:57 iexampleapp\IExampleApp.dsp
文件 545 2006-03-24 13:55 iexampleapp\IExampleApp.dsw
文件 1811 2006-03-27 23:56 iexamplecplusapp\IExampleCPlusApp.cpp
文件 4404 2006-03-27 23:57 iexamplecplusapp\IEXAMPLECPLUSAPP.dsp
文件 555 2006-03-27 23:57 iexamplecplusapp\IEXAMPLECPLUSAPP.dsw
文件 5635 2006-03-28 22:54 regiexample\RegIExample.c
文件 3976 2006-03-24 14:05 regiexample\RegIExample.dsp
文件 545 2006-03-24 14:05 regiexample\RegIExample.dsw
文件 3050 2006-03-28 04:19 unregiexample\UnregIExample.c
文件 4000 2006-03-24 14:07 unregiexample\UnregIExample.dsp
文件 549 2006-03-24 14:05 unregiexample\UnregIExample.dsw
相关资源
- C语言程序设计(第四版)谭浩强著
- C/C++实验系统
- c语言教程1946
- c语言资料大全
- C语言经典算法大全 总
- 很好用的C语言编译器,结合TC2.0,3
- The_C_Programming_Language第二版中文版
- C语言基础习题集(C考试常见题型)
- C语言编程大赛试题
- 二级C语言复习资料打包(2011-07)
- 关于MFC的 基本用法及实例的源代码
- c语言嵌入式
- 数据结构习题集答案(C语言版严蔚敏
- c高级编程技术
- 俄罗斯方块,C语言实现
- C语言程序设计案例教程
- c语言教程讲义(谭浩强)1870
- 113道非常经典的C语言题目
- c语言windows程序设计中文件版
- c语言程序设计
- C语言穷举法统计素数个数
- c++/c语言学习系统
- 新概念51单片机C语言教程.入门、提高
- 第三届蓝桥杯C语言本科组复赛题及解
- C语言实战开发宝典
- 经典100列 c语言
- c语言经典例题100道
- C语言入门1806
- C语言必背18个经典程序
- 嵌入式系统的C语言—译自《C for em<
评论
共有 条评论