代码搜索:openFile
找到约 2,657 项符合「openFile」的源代码
代码结果 2,657
www.eeworm.com/read/481225/6645236
h filesys.h
// filesys.h
// Data structures to represent the Nachos file system.
//
// A file system is a set of files stored on disk, organized
// into directories. Operations on the file system have to
// do
www.eeworm.com/read/481225/6645243
cc fstest.cc
// fstest.cc
// Simple test routines for the file system.
//
// We implement:
// Copy -- copy a file from UNIX to Nachos
// Print -- cat the contents of a Nachos file
// Perftest -- a str
www.eeworm.com/read/408137/11404728
spj code.spj
[Settings]
Version=2002.1
Mode=Debug
[WindowPos]
Output=0,1,0,-1,-4,-23,44,44,870,443
OpenWindows=
code=0,1,0,-1,-4,-23,22,22,866,439
[Options]
DebugEnable=No
CCEnable=No
CcOpEnable=No
[Pos
www.eeworm.com/read/260266/11735564
bas modcdlg.bas
Attribute VB_Name = "Modcdlg"
'********************************************
''' 作者:kylinpoet or 獬独
''''2007-05-14 23:44 初稿
''''2007-05-15 13:32 修改
''''转载请保留作者 声明
'*******************************
www.eeworm.com/read/230539/14282295
makefile
run: block.o fcb.o openfile.o use.o main.o
g++ -o $@ $^
block.o: block.cpp block.h fileflag.h
g++ -c -o $@ $<
fcb.o: fcb.cpp fcb.h
g++ -c -o $@ $<
openfile.o: openfile.cpp openfile.h errco
www.eeworm.com/read/215991/15030452
pas main.pas
unit Main;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
Menus, ImgList, ToolWin, ComCtrls, StdCtrls, ExtCtrls, ActnList, Buttons;
type
TFo
www.eeworm.com/read/214672/15092321
cc pbitmap.cc
// pbitmap.c
// Routines to manage a persistent bitmap -- a bitmap that is
// stored on disk.
//
// Copyright (c) 1992,1993,1995 The Regents of the University of California.
// All rights reserved.
www.eeworm.com/read/214672/15092330
h filesys.h
// filesys.h
// Data structures to represent the Nachos file system.
//
// A file system is a set of files stored on disk, organized
// into directories. Operations on the file system have to
// do
www.eeworm.com/read/114100/15112987
txt 如何调用getopenfilename函数.txt
下面是GetOpenFileName的例子:
Option Explicit
Private Declare Function GetOpenFileName Lib "comdlg32.dll" Alias _
"GetOpenFileNameA" (pOpenfilename As OPENFILENAME) As Long