代码搜索:Byte
找到约 10,000 项符合「Byte」的源代码
代码结果 10,000
www.eeworm.com/read/346985/11708342
+
function EncodeA(pIn:PChar;pOut:PChar;Size:Integer):Integer;
var
iptr,optr,i : Integer;
b1,bcal,bflag1,bflag2 : byte;
key1,key2 : byte;
begin
iptr:=0;
www.eeworm.com/read/157384/11713724
awk reform.awk
#!/usr/bin/awk -f
# This file converts tcpdump output into a hexdump with
# ASCII strings on the right. It replaces packet headers
# with "*"s to reduce visual noise.
#
# Use it like:
# tcpdump -s
www.eeworm.com/read/346898/11713843
c sendbyte.c
// SendByte.c
// send a byte of address or data to the slave
// parameter order used to select between sending LSB or MSB first
// returns a 1 if the slave didn't ack and a 0 if the slave did
#
www.eeworm.com/read/157384/11714767
h tracker.h
/*
* Copyright (C) 1999 Mark Baysinger (mbaysing@ucsd.edu)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as pu
www.eeworm.com/read/260634/11716390
cpp 1.cpp
#include "stdio.h"
#include "io.h"
#include "windows.h"
#define B 0.8
#define W0 360
#define H0 360
BITMAPFILEHEADER bitmapfileheader; //图象头
BITMAPINFOHEADER bitmapinfoheader; //信息头
FIL
www.eeworm.com/read/260514/11722667
cpp sapphire.cpp
// sapphire.cpp -- modified by Wei Dai from:
/* sapphire.cpp -- the Saphire II stream cipher class.
Dedicated to the Public Domain the author and inventor:
(Michael Paul Johnson). This cod
www.eeworm.com/read/157232/11726479
java digest.java
package Sec.Md5;
/**
* interface that a message digest conforms to.
*/
public interface Digest
{
/**
* return the algorithm name
*
* @return the algorithm name
*/
www.eeworm.com/read/157231/11726514
java subkey.java
//版权所有--董清潭
package des;
public class SubKey {
private String inKey;
private StringBuffer keyBuf;
private byte[] key=new byte[64];
/*实验性数据
private static byte[] key={
0,0,0,1,0,0,1,1, 0,0
www.eeworm.com/read/346740/11726658
htm 57.htm
如何使用MSCOMM32.OCX发送大于80H的字符,可否给个示例程序?
答:该接发方式为
MSComm1.InputMode=comInputModeBinary
如发一个A0H
Dim TxData(0) As Byte
TxData(0)=&HA0
MSComm1.O
www.eeworm.com/read/346740/11726772
htm 51.htm
取得网卡序列号
很多软件以取得网卡地址作为License验证,这不失为一个验证合法用户的好办法,不过要付出回复用户电话、传真的代价哦 ^_^
将下面这段代码拷贝到程序中,然后在你的程序需要的时候调用EthernetAddress(0),该函数返回的字符串就是您机器上网卡的以太序列号。
Pri