代码搜索结果
找到约 10,000 项符合
Interface 的代码
desc.h
unsigned char DEV_DESC[]=
{ 18, /*Device Descriptor length*/
1, /*Decriptor type*/
0x00, /*0x0001 is Specification Version (BCD)即符合USB1.0标准*/
0x01,
0x00, /*Device class*/
0x00, /*Device s
desc.h
unsigned char DEV_DESC[]=
{ 18, /*Device Descriptor length*/
1, /*Decriptor type*/
0x00, /*0x0001 is Specification Version (BCD)即符合USB1.0标准*/
0x01,
0x00, /*Device class*/
0x00, /*Device s
desc.h
unsigned char DEV_DESC[]=
{ 18, /*Device Descriptor length*/
1, /*Decriptor type*/
0x00, /*0x0001 is Specification Version (BCD)即符合USB1.0标准*/
0x01,
0x00, /*Device class*/
0x00, /*Device s
todo
- Exportable snapshots
- Create an upgrade function
- Move htaccess management into the configuration page
- Quote marks screw up adding a bookmark
- Comment on links
- Optionally show the tags and li
meta_wnd.h
/*************************************************************************/
/* */
/* Copyright (c) 1997 - 1999 Accelerat
important.txt
Note to programmers:
The random objects have no 'str' property yet. Instead it is called 'R_str', according to a previous version of the interface specification.
Changing this is basically just a
orderingfunction.java
package shared;
import java.lang.*;
/** The interface for classes using an ordering function for sorting various lists
* in the Graph class.
*/
public interface OrderingFunction{
/** The
factory.java
//: typeinfo/factory/Factory.java
package typeinfo.factory;
public interface Factory { T create(); } ///:~
null.java
//: net/mindview/util/Null.java
package net.mindview.util;
public interface Null {} ///:~
performs.java
//: generics/Performs.java
public interface Performs {
void speak();
void sit();
} ///:~