home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "RTREGW"
- Option Explicit
- Declare Function RTGetPCKey Lib "RTREGW32.DLL" (ByVal PCKey$) As Integer
- Declare Sub RTSetPCLock Lib "RTREGW32.DLL" (ByVal Value As Integer)
- Declare Function RTRegister Lib "RTREGW32.DLL" (ByVal ProductKey$, ByVal UserKey$, ByVal RegKey$) As Integer
- Declare Function RTRegisterByFile Lib "RTREGW32.DLL" (ByVal ProductKey$, ByVal FileName$) As Integer
- Declare Function RTGetUserKey Lib "RTREGW32.DLL" (ByVal ProductKey$, ByVal Value$) As Integer
- Declare Function RTSetUserInfo Lib "RTREGW32.DLL" (ByVal ProductKey$, ByVal Info$, ByVal Value$) As Integer
- Declare Function RTGetUserInfo Lib "RTREGW32.DLL" (ByVal ProductKey$, ByVal Info$, ByVal Value$) As Integer
- Declare Function RTDelUserInfo Lib "RTREGW32.DLL" (ByVal ProductKey$, ByVal Info$) As Integer
- Declare Function RTIsReg Lib "RTREGW32.DLL" (ByVal ProductKey$) As Integer
- Declare Function RTDelReg Lib "RTREGW32.DLL" (ByVal ProductKey$) As Integer
- Declare Function RTCheckReg Lib "RTREGW32.DLL" (ByVal ProductKey$) As Long
- Declare Function RTIsCountLock Lib "RTREGW32.DLL" (ByVal ProductKey$) As Integer
- Declare Function RTSetCountLock Lib "RTREGW32.DLL" (ByVal ProductKey$, ByVal Value As Long) As Integer
- Declare Function RTDelCountLock Lib "RTREGW32.DLL" (ByVal ProductKey$) As Integer
- Declare Function RTCheckCountLock Lib "RTREGW32.DLL" (ByVal ProductKey$) As Long
- Declare Function RTIsDateLock Lib "RTREGW32.DLL" (ByVal ProductKey$) As Integer
- Declare Function RTSetDateLock Lib "RTREGW32.DLL" (ByVal ProductKey$, ByVal Value As Long) As Integer
- Declare Function RTDelDateLock Lib "RTREGW32.DLL" (ByVal ProductKey$) As Integer
- Declare Function RTCheckDateLock Lib "RTREGW32.DLL" (ByVal ProductKey$) As Long
- Declare Function RTGetVersion Lib "RTREGW32.DLL" () As Long
- Declare Sub RTSetVersion Lib "RTREGW32.DLL" (ByVal Value As Long)
- Declare Sub RTSetEncodeKey Lib "RTREGW32.DLL" (ByVal Value$)
- Declare Function RTGetSaveKind Lib "RTREGW32.DLL" () As Integer
- Declare Function RTSetSaveKind Lib "RTREGW32.DLL" (ByVal Value As Integer) As Integer
- Declare Sub RTGetSaveFile Lib "RTREGW32.DLL" (ByVal File$)
- Declare Function RTSetSaveFile Lib "RTREGW32.DLL" (ByVal File$) As Integer
- Declare Function RTGetSafeKind Lib "RTREGW32.DLL" () As Integer
- Declare Function RTSetSafeKind Lib "RTREGW32.DLL" (ByVal Value As Integer) As Integer
- Declare Sub RTGetSafeFile Lib "RTREGW32.DLL" (ByVal File$)
- Declare Function RTSetSafeFile Lib "RTREGW32.DLL" (ByVal File$) As Integer
- Global Const SAVE_NONE = 0
- Global Const SAVE_DEF = 1
- Global Const SAVE_INI = 2
- Global Const SAVE_DLL = 3
-
-