代码搜索:INTEGER
找到约 10,000 项符合「INTEGER」的源代码
代码结果 10,000
www.eeworm.com/read/422954/10599568
bas module1.bas
Attribute VB_Name = "Module1"
Option Explicit
Public GraphyIndex As Integer
Public Pass As Boolean
Public Const TileSize = 10
Public Type Tile
Pass As Boolean
GraphyIndex As Integer
Map
www.eeworm.com/read/159878/10603277
dpr firstdll.dpr
library Firstdll;
{changing the uses statement, as suggested in
the comments, the size of the DLL changes}
{uses
ShareMem, SysUtils, Dialogs; // larger code}
uses
ShareMem, SysUtils, Win
www.eeworm.com/read/159869/10605872
v loop3.v
module loop3;
integer i;
initial begin
i=0;
repeat(4)
begin
$display ("i=%h",i);
i=i+1;
end
end
endmodule
www.eeworm.com/read/159857/10608212
java personaljob.java
/*********************************************************
* *
* TiandiNet Personal Job Management *
*
www.eeworm.com/read/422780/10610092
pas unithtmlhelp.pas
unit unitHTMLHelp;
{$WEAKPACKAGEUNIT}
{$MINENUMSIZE 4}
{$WARN SYMBOL_PLATFORM OFF}
interface
uses Windows;
const
HH_DISPLAY_TOPIC = $0000;
HH_HELP_FINDER = $0000;
www.eeworm.com/read/422780/10610184
pas unitcharsetmap.pas
unit unitCharsetMap;
interface
uses Windows, Classes, SysUtils, Graphics, MultiLanguage_TLB, richedit;
var
CP_USASCII : Integer = 0;
DefaultCodePage : Integer = 0;
function MIMEChars
www.eeworm.com/read/422780/10610198
pas unitvirtualmemory.pas
unit unitVirtualMemory;
interface
uses Windows, Classes, SysUtils;
type
TVirtualMemoryStream = class (TCustomMemoryStream)
private
fReserved : Integer;
fChunkSize : Integer;
protecte
www.eeworm.com/read/422780/10610204
pas unitstreamtextreader.pas
unit unitStreamTextReader;
interface
uses Windows, Classes, SysUtils;
type
TStreamTextReader = class
private
fStream : TStream;
fBuffer : PChar;
fbufPos : Integer;
fBufSize
www.eeworm.com/read/422780/10610220
pas unitsearchstring.pas
unit unitSearchString;
interface
uses Windows, Classes, SysUtils, StrUtils, unitCharsetMap;
type
TStrArray = array of string;
TStringSearcher = class
protected
fSearchString : S