代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/445037/7601003
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/444437/7612773
pas darrays.pas
unit DArrays;
{ DArrays.pas by Tom Nuydens (axeman@mail.dma.be - bewoner.dma.be/axeman).
I am not responsible for the bad things that may happen when using this unit.
If it doesn't crash your
www.eeworm.com/read/444375/7613226
c useaddr.c
#include
void main(void)
{
int a = 1, b = 2;
int *i_pointer;
// Assign an address
i_pointer = &a;
// Change the value pointed to by i_pointer to 5
*i_point
www.eeworm.com/read/444375/7613306
c brk.c
#include
#include
void main(void)
{
char *ptr;
printf("Starting heap available %u\n", coreleft());
ptr = malloc(1); // Get pointer to current break v
www.eeworm.com/read/444246/7615979
pas unitcall.pas
unit UnitCall;
interface
uses Classes,windows,Dialogs,SysUtils,consttype,Unit1;
type
FuncCall =class
procedure procPickup;
procedure UseItem(TargetID:cardinal);
procedure Attick(limit:integer
www.eeworm.com/read/444246/7615980
pas unitbaseinfo.pas
unit UnitBaseInfo;
interface
uses
Classes,SysUtils,dialogs,windows,consttype,Unit1;
type
BaseInfo = class(TThread)
private
{ Private declarations }
procedure GetInfo;
pr
www.eeworm.com/read/444069/7618870
c os_sem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/444069/7618874
c os_mem.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/444069/7618878
c os_mbox.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/443686/7628334
cpp pointertofunction.cpp
//: C03:PointerToFunction.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Defining and using a p