在线笔记
全部博文(596)
发布时间:2014-05-30 14:24:33
判断某个库是否存在1. configure.ac AC_CHECK_LIB(udt, udt_listen, UDT_LIBS='-ludt', AC_MSG_ERROR([udt not found])) AC_SUBST(UDT_LIBS)2. Makefile.am libspice_client_glib_2_0_la_LIBADD = \ $(UDT_LIBS) 3. automake -> Makefile..........【阅读全文】
发布时间:2014-05-29 16:30:43
驱动获取系统版本信息有2个函数,分别是PsGetVersion RtlGetVersionPsGetVersion在XP后已经不建议使用,/*Returns the windows version we're running on*/vboxWinVersion_t VBoxQueryWinVersion(){ ULONG major, minor, build; &.........【阅读全文】
发布时间:2014-05-29 15:56:51
http://technet.microsoft.com/zh-cn/library/ff558773%28v=vs.85%29.aspxThe PAGED_CODE macro ensures that the calling thread is running at an IRQL that is low enough to permit paging.SyntaxC++VOID PAGED_CODE(void);Paramet.........【阅读全文】
发布时间:2014-05-26 17:47:23
video request packet (VRP)A mechanism used to communicate device I/O control requests from a display driver to its corresponding adapter-specific miniport driver. For example, when a display driver calls EngDeviceIoControl, this function calls a system service causing the NT-based oper.........【阅读全文】