代码搜索:DeviceIoControl
找到约 574 项符合「DeviceIoControl」的源代码
代码结果 574
www.eeworm.com/read/133596/5904379
cpp control.cpp
// Control.cpp -- IOCTL handlers for fileio driver
// Copyright (C) 1999 by Walter Oney
// All rights reserved
#include "stddcls.h"
#include "driver.h"
#include "ioctls.h"
//////////////////
www.eeworm.com/read/105300/6199615
cpp playw32.cpp
//////////////////////////////////////////////////////////////////////////////
// Playw32.cpp
//
// Win32 Interface to Virtual MPEG Device
//
// 09/11/1999 fOSSiL Initial version
//
#include
www.eeworm.com/read/102995/6224788
cpp control.cpp
// Control.cpp -- IOCTL handlers for fileio driver
// Copyright (C) 1999 by Walter Oney
// All rights reserved
#include "stddcls.h"
#include "driver.h"
#include "ioctls.h"
//////////////////
www.eeworm.com/read/100017/6276299
c win32app.c
#include
#include
#include
#include
#include "dmabuf.h"
HANDLE hDevice;
DMA_BUFFER_DESCRIPTOR dmadesc;
void main(int ac, char* av[])
{
DWORD
www.eeworm.com/read/494464/6376734
cpp hywdlg.cpp
// hywDlg.cpp : implementation file
//
#include "stdafx.h"
#include "hyw.h"
#include "hywDlg.h"
#include "string.h"
#include "windows.h"
#include "winioctl.h"
#include "devintf.h"
#ifndef _
www.eeworm.com/read/262480/11587767
txt usb2.txt
//打开 USB 口读写, 由驱动程序的 Pipe 名确定
HANDLE hPipe = OpenMyDevPipe("MyPipe1"); //驱动程序里面的 Pipe 名, 对应访问某个端点的 I/O, 这里我乱写的, 需要与驱动一致
if(hPipe != INVALID_HANDLE_VALUE) //打开 Pipe 成功
{
ReadFile(hPipe, Buff
www.eeworm.com/read/257848/11910692
cpp dcmotordlg.cpp
// DCMotorDlg.cpp : implementation file
//
#include "stdafx.h"
#include "DCMotor.h"
#include "DCMotorDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = _
www.eeworm.com/read/229632/14326213
c ioctl.c
/*--
Copyright (C) Microsoft Corporation, 1999 - 1999
Module Name:
ioctl.c
Abstract:
The CDROM class driver tranlates IRPs to SRBs with embedded CDBs
and sends them to its
www.eeworm.com/read/227355/14430357
cpp test_charsample.cpp
// Test_CharSample.cpp
//
// Generated by DriverWizard version DriverStudio 3.1.0 (Build 1722)
//
// This console application demonstrates how to open a handle
// to a device in your driver, and
www.eeworm.com/read/120161/14812116
txt c builder 访问 usb 口方法.txt
C++ Builder 访问 USB 口的方法
编译环境: Borland C++ Builder 6.0, Windows Server 2003 DDK
运行环境: Win98/2000/XP/2003
下面是访问 USB 口必备的函数:
#include
#include
#include