代码搜索:explicit
找到约 10,000 项符合「explicit」的源代码
代码结果 10,000
www.eeworm.com/read/225322/6307337
bas hide.bas
Attribute VB_Name = "Hide"
' hide module
' --------------
' those functions effectively hide/unhide the program
' from Win9x TaskList
Option Explicit
Public Declare Function GetCurrentProces
www.eeworm.com/read/262420/6334130
bas module1.bas
Attribute VB_Name = "Module1"
Option Explicit
Public Declare Function GetPrivateProfileInt Lib "kernel32" Alias "GetPrivateProfileIntA" _
(ByVal lpApplicationName As String, ByVal lpKeyName As St
www.eeworm.com/read/149916/6336989
bas comp_arithmetic_dmc.bas
Attribute VB_Name = "Comp_Arithmetic_DMC"
Option Explicit
'This is a 1 run method
Private OutStream() As Byte
Private OutPos As Long
Private OutBitCount As Integer
Private OutByteBuf As Byte
www.eeworm.com/read/149916/6337005
bas comp_multidict.bas
Attribute VB_Name = "Comp_LZW_Multidict"
Option Explicit
'This is a 1 run method
Private OutStream() As Byte
Private OutPos As Long
Private OutByteBuf As Integer
Private OutBitCount As Integ
www.eeworm.com/read/149916/6337011
bas comp_huffshortdict.bas
Attribute VB_Name = "Comp_HuffShortDict"
Option Explicit
'This is a 2 run method
Private BitVal() As Long
Private CharVal() As Long
Public Sub Compress_HuffManShortDict(FileArray() As Byte)
www.eeworm.com/read/149916/6337015
bas comp_rle_var.bas
Attribute VB_Name = "Comp_RLE_Var"
Option Explicit
Private OutStream() As Byte
Private ContStream() As Byte
Private LengthStream() As Byte
Private ReadBitPos As Integer
Private CntPos As Long
www.eeworm.com/read/149916/6337019
bas cod_freqshift.bas
Attribute VB_Name = "Cod_FreqShift"
Option Explicit
Private Dictionary As String
Private CharCount(256) As Long
'This coder Makes Use of a dictionary of all ascii characters
'it will count th
www.eeworm.com/read/149916/6337020
bas comp_eliminator.bas
Attribute VB_Name = "Comp_Eliminator"
Option Explicit
Private doTillNoCompress As Boolean
'This is a 2 run method and we have to keep the whole contents
'in memory until some variables are saved
www.eeworm.com/read/149916/6337026
bas comp_reducerdict16.bas
Attribute VB_Name = "Comp_ReducerDict16"
Option Explicit
'This is a 2 run method
'this reducer works by splitting a 256 chars dictionary into sixteen
'dictionaries of 16 chars each
'it will t
www.eeworm.com/read/149916/6337029
bas comp_lbe.bas
Attribute VB_Name = "Comp_LBE"
Option Explicit
'This is a 1 run method but because it stores some variables at the end of the
'compressed file the decompressor is a 2 run method
Private Dictio