⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debughooks.c

📁 Vxworks 源代码
💻 C
字号:
/* DebugHooks.c -- Table of debug hooks  *//* Copyright 2001 Wind River Systems, Inc. *//*modification history--------------------01c,01oct01,nel  Add hook for dcomShow printing string.01b,26sep01,nel  Modify hooks to pass IP and Port.01a,21aug01,nel  created*//*DESCRIPTIONThis module holds a table of hooks that are placed at certain points in the code toallow debug data to be passed to routines and processed into debug output.*/#include <stdio.h>#include "vxidl.h"/* RPC library hooks. */void (*pRpcClientOutput)(const BYTE *, DWORD, const char *, int, int)	= NULL;void (*pRpcClientInput)(const BYTE *, DWORD, const char *, int, int)	= NULL;void (*pRpcServerOutput)(const BYTE *, DWORD, const char *, int, int)	= NULL;void (*pRpcServerInput)(const BYTE *, DWORD, const char *, int, int)	= NULL;/* DCOM Show hooks */void (*pDcomShowPrintStr)(const char *) 				= NULL;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -