代码搜索:PUBLIC
找到约 10,000 项符合「PUBLIC」的源代码
代码结果 10,000
www.eeworm.com/read/176864/9480889
h public.h
/////////////////Decoder Functions//////////////////////////
//decode one frame
//BitCount is the size of bitstream (in bytes )
int DecodeOneFrame(int BitCount);
//init the internal structu
www.eeworm.com/read/176627/9489702
h public.h
#ifndef __PUBLIC_H__
#define __PUBLIC_H__
#include "midware.h"
#include "sybasedb.h"
extern CDatabase theDatabase;
int gf_GetINIString(char * aszFileName, /*INI文件名*/
char * aszSession, /*段*/
www.eeworm.com/read/175741/9535064
key public.key
65537
015777145104814613968100278840819627
00226671260367647782250487979760681646744820
www.eeworm.com/read/371114/9565208
c public.c
#include "..\\spce061\\061reg.h"
#include "public.h"
void DelayMS(unsigned int msDelay)
{
unsigned int i;
while(msDelay--)
{
for(i=0; i
www.eeworm.com/read/371114/9565210
h public.h
#ifndef __PUBLIC_h__
#define __PUBLIC_h__
// write your header here
/*H**************************************************************************
* 文件名: filename.h
*---------------
www.eeworm.com/read/366690/9803636
c public.c
///////////////////////////////舵机控制方法//////////////////////////////////
//舵机控制数据命令包括两个值一个是最终到达的旋转终止角度,另外一个是速度范围0-255,
//255代表最大速度,MG995舵机速度是0.2秒60度,0代表最小速度设定为2.55秒每60度
//255减去速度参数 . 比如转动30度,速度参数200
www.eeworm.com/read/366690/9803658
h public.h
#include "msp430x14x.h"
extern unsigned int PWMbuff[8]; //舵机控制寄存器
extern unsigned int PWMangle[8]; //计算出的最终到达角度计数器数据=(角度*1111)/25
extern unsigned int PWMvalue[8]; //每周期改变的计数器数值
//
www.eeworm.com/read/365949/9838840
cpp public.cpp
//这个程序在本书所带软盘中。文件名为PUBLIC.CPP
//这个程序说明全部成员为公用成员的话将失去数据的安全性。
#include
#include
class salary { //定义类salary
public:
// member variables are public
float rate;
www.eeworm.com/read/363888/9933193
cpp public.cpp
//: C05:Public.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Public is just like C's struct