代码搜索结果
找到约 10,000 项符合
Driver 的代码
driver.c
#include "apue.h"
void
do_driver(char *driver)
{
pid_t child;
int pipe[2];
/*
* Create a stream pipe to communicate with the driver.
*/
if (s_pipe(pipe) < 0)
err_sys("can't create stream
driver.h
#pragma once
BOOL InstallDriver();
BOOL StartDriver();
BOOL UninstallDriver();
driver.c
#include "stdafx.h"
#include "driver.h"
BOOL InstallDriver()
{
SC_HANDLE hSc, hService;
char szPath[MAX_PATH];
UINT i;
GetModuleFileName( NULL, szPath, MAX_PATH );
for( i = strlen(
driver.c
#include
#include
#include
#include "winkernel.h"
#include "list.h"
#include "LDasm.h"
//#define DEBUG
UNICODE_STRING DeviceName;
UNICODE_STRING SymbolicLinkN
driver.c
/*
* drivers/usb/driver.c - most of the driver model stuff for usb
*
* (C) Copyright 2005 Greg Kroah-Hartman
*
* based on drivers/usb/usb.c which had the following copyrights:
*
driver.c
#include
#include
#if defined(CONFIG_SMP)
#define __SMP__
#endif
#include
#include
#include
#include
driver.c
//*----------------------------------------------------------------------------
//* ATMEL Microcontroller Software Support - ROUSSET -
//*-------------------------------------------------