代码搜索:Function
找到约 10,000 项符合「Function」的源代码
代码结果 10,000
www.eeworm.com/read/379413/9198390
h function.h
// function.h
//
// This file controls which driver functions are enabled.
#ifndef __function_h__
#define __function_h__
#define DRIVER_FUNCTION_CREATE
#define DRIVER_FUNCTION_CLOSE
#define
www.eeworm.com/read/379400/9198998
h function.h
// function.h - for USBFILT example
//=============================================================================
//
// Compuware Corporation
// NuMega Lab
// 9 Townsend West
// Nashua, NH 030
www.eeworm.com/read/182500/9201188
h function.h
#ifndef function
#define function
#include "port.h"
void MCUInitial(void);
unsigned char RecFrameEnd(void);
void MoveData(void);
char AnalysisFrameStart(void);
void
www.eeworm.com/read/378964/9211521
h function.h
// function.h
//
// Generated by DriverWizard 3.2.0 (Build 2485)
// Requires DDK and DriverWorks
// File created on 3/10/2008
//
// This include file specifies the set of request handlers that t
www.eeworm.com/read/182195/9212439
h function.h
/*
*
* Copyright (c) 1994
* Hewlett-Packard Company
*
* Permission to use, copy, modify, distribute and sell this software
* and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/377958/9255415
sql function.sql
use northwind
go
create function fn_newregion
(@myinput nvarchar(30))
returns nvarchar(30)
begin
if @myinput is null
set @myinput = 'Not Applicable'
return @myinput
end
go
selec