摘要: // console.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include using namespace std;typedef unsigned char UCHAR;int FunA();int FunB();int FunC();typedef enum tagMsgType{ MSG_TYPE_A = 1, MSG_TYPE_B, MSG_TYPE_C};typedef int (*MSG_PROC_FUNC)();typedef struct tagMsgDispatchTbl{ UCHAR ucMsgType;.. 阅读全文
posted @ 2013-10-30 23:24 静默虚空 阅读(565) 评论(0) 推荐(0)