代码搜索:pointer
找到约 10,000 项符合「pointer」的源代码
代码结果 10,000
www.eeworm.com/read/260894/11689402
pas patchlib.pas
unit PatchLib;
(*
Gabriel Corneanu (gabrielcorneanu(AT)gmail.com)
Utilities for patching exe code
Changes:
Gabriel Corneanu
- fixed a bug in RoundInt
- Removed ExecAllocator and
www.eeworm.com/read/260894/11689420
pas fastsys.pas
unit FastSys;
(*
Gabriel Corneanu (gabrielcorneanu(AT)gmail.com)
Part of the FastObj project.
It contains mainly patches to some RTL functions.
JiYuan Xie (gdxjy at hotmail.com)
- m
www.eeworm.com/read/260887/11689843
pas msgmemory.pas
unit MsgMemory;
{$I MsgVer.inc}
interface
uses SysUtils, Classes,
{$IFDEF MSWINDOWS}
Windows,
{$ENDIF}
{$IFDEF LINUX}
Libc,
{$ENDIF}
MsgExcept, MsgConst;
type
T
www.eeworm.com/read/260887/11689920
pas msgbzip2d.pas
{*******************************************************}
{ }
{ BZIP2 Data Compression Interface Unit }
{
www.eeworm.com/read/260887/11690158
pas msgzlib.pas
// ZLib 1.1.4 (modified by AidAim to add 64-bit stream support)
{*******************************************************}
{ }
{ Borla
www.eeworm.com/read/347009/11705590
pas pack.pas
unit Pack;
interface
procedure CompressBuff(const InBuff: Pointer; InBytes: Cardinal;
out OutBuff: Pointer; out OutBytes: Cardinal);
implementation
const
Z_BEST_SPEED = 1
www.eeworm.com/read/347009/11705604
pas unpack.pas
unit Unpack;
interface
procedure DecompressBuff(const InBuff: Pointer; InBytes: Integer;
const OutBuff: Pointer; BufSize: Integer);
implementation
const
zlib_version = '1.0.4';
ty
www.eeworm.com/read/346994/11706609
c ptr.c
/* Demonstration of declaring and using a pointer to a function.*/
#include
/* The function prototype. */
double square(double x);
/* The pointer declaration. */
double (*ptr)
www.eeworm.com/read/346994/11706648
c ptr.c
/* Demonstrates basic pointer use. */
#include
/* Declare and initialize an int variable */
int var = 1;
/* Declare a pointer to int */
int *ptr;
int main( void )
{
/
www.eeworm.com/read/157403/11709706
c quc.c
/*************************************************************************/
/* */
/* Copyright Mentor Graphics Cor