代码搜索:linked
找到约 4,326 项符合「linked」的源代码
代码结果 4,326
www.eeworm.com/read/105051/15679180
s start32.s
# $Id: start32.S,v 1.1 2003/04/15 19:29:59 hpa Exp $
#
# Simple stub to get us to the right point in the 32-bit code;
# this module must be linked first
#
.text
.globl _start
_start:
jmp setup
www.eeworm.com/read/101228/15840416
prg czrz.prg
*日志管理模块
*程序名:rjgl
*程序员:
*开发日期:1997.11.21
*修改日期:
*修改记录:
*变量说明
*rzbd:日志表单
*mmtg:密码通过
private all except p_*
mmtg=.t.
czyxm=''
do form zgmmqr name zgmmqr linked
if mmtg
do jrz wit
www.eeworm.com/read/187475/8637537
h intlist.h
// A node of a linked list
struct listnode {
int item;
listnode* next;
};
// Integer linked list
class IntList {
public:
IntList();
IntList(const IntList& il);
~IntList();
voi
www.eeworm.com/read/287962/8656685
txt 利用键盘钩子在windows平台下捕获键盘动作.txt
作者:skyhorsebj
email: XUEY@CIDC.COM.CN
日期:2001-7-3 18:10:43
一。我们可以在应用程序中毫不费力的捕获在本程序窗口上所进行的键盘操作,但如果我们想要将此程序作成一个监控程序,捕获在Windows平台下任意窗口上的键盘操作,就需要借助于全局钩子来实现了。
二、系统钩子和DLL
钩子的本质是一段用以处理系统消息的程序,通过系统调用,将 ...
www.eeworm.com/read/283325/9029620
lib lstlib.lib
lstLib {doubly linked list subroutine library } lstLib {lstLib} {VxWorks API Reference} {OS Libraries} {} {}
www.eeworm.com/read/380622/9140924
pas linkedlist.pas
unit LinkedList;
interface
// Doubly-linked list. Derive a custom class from TNode
// and set the link class to that class. TLinkedList handles
// the list and your class handles the data.
//
www.eeworm.com/read/380622/9141123
pas cltnlist.pas
unit CltnList;
(*
Implement the IList and IStack collections using doubly-linked lists.
The TLinkedList class keeps track of the head and tail nodes and a
count of the number of nodes in
www.eeworm.com/read/365329/9869363
d point.d
// new(Point, x, y)
% PointClass: Class Point: Object { // header
int x; // object components
int y;
% // statically linked
void move (_self, int dx, int dy);
%-
www.eeworm.com/read/365329/9869418
d point.d
// new(Point, x, y)
% PointClass: Class Point: Object { // header
int x; // object components
int y;
% // statically linked
void move (_self, int dx, int dy);
%-