112 lines
2.6 KiB
Modula-2
112 lines
2.6 KiB
Modula-2
; -*- Mode: Fundamental; tab-width: 4; indent-tabs-mode: nil -*-
|
|
;
|
|
; The contents of this file are subject to the Netscape Public
|
|
; License Version 1.1 (the "License"); you may not use this file
|
|
; except in compliance with the License. You may obtain a copy of
|
|
; the License at http://www.mozilla.org/NPL/
|
|
;
|
|
; Software distributed under the License is distributed on an "AS
|
|
; IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
; implied. See the License for the specific language governing
|
|
; rights and limitations under the License.
|
|
;
|
|
; The Original Code is mozilla.org code.
|
|
;
|
|
; The Initial Developer of the Original Code is Netscape
|
|
; Communications Corporation. Portions created by Netscape are
|
|
; Copyright (C) 1998 Netscape Communications Corporation. All
|
|
; Rights Reserved.
|
|
;
|
|
; Contributor(s):
|
|
|
|
|
|
|
|
LIBRARY XPPREF16.DLL
|
|
EXETYPE WINDOWS
|
|
PROTMODE
|
|
|
|
DESCRIPTION 'Netscape 16-bit XP Preferences Library'
|
|
|
|
CODE LOADONCALL MOVEABLE DISCARDABLE
|
|
DATA PRELOAD MOVEABLE SINGLE
|
|
|
|
HEAPSIZE 8192
|
|
|
|
IMPORTS
|
|
_sscanf = nspr3.33
|
|
|
|
EXPORTS
|
|
_PREF_Init = _PREF_Init
|
|
_PREF_ReadLockFile
|
|
_PREF_EvaluateJSBuffer
|
|
_PREF_QuietEvaluateJSBuffer
|
|
_PREF_SetCharPref
|
|
_PREF_SetIntPref
|
|
_PREF_SetBoolPref
|
|
_PREF_SetBinaryPref
|
|
_PREF_SetColorPref
|
|
_PREF_SetColorPrefDWord
|
|
_PREF_SetRectPref
|
|
_PREF_SetDefaultCharPref
|
|
_PREF_SetDefaultIntPref
|
|
_PREF_SetDefaultBoolPref
|
|
_PREF_SetDefaultBinaryPref
|
|
_PREF_SetDefaultColorPref
|
|
_PREF_SetDefaultRectPref
|
|
_PREF_SavePrefFile
|
|
_PREF_SavePrefFileAs
|
|
_PREF_GetCharPref
|
|
_PREF_CopyCharPref
|
|
_PREF_GetIntPref
|
|
_PREF_GetBoolPref
|
|
_PREF_GetColorPref
|
|
_PREF_GetColorPrefDWord
|
|
_PREF_GetRectPref
|
|
_PREF_GetBinaryPref
|
|
_PREF_CopyBinaryPref
|
|
_PREF_GetDefaultCharPref
|
|
_PREF_CopyDefaultCharPref
|
|
_PREF_GetDefaultIntPref
|
|
_PREF_GetDefaultBoolPref
|
|
_PREF_GetDefaultBinaryPref
|
|
_PREF_GetDefaultColorPref
|
|
_PREF_GetDefaultColorPrefDWord
|
|
_PREF_GetDefaultRectPref
|
|
_PREF_DeleteBranch
|
|
_PREF_GetConfigString
|
|
_PREF_CopyConfigString
|
|
_PREF_CopyIndexConfigString
|
|
_PREF_GetConfigInt
|
|
_PREF_PrefIsLocked
|
|
_PREF_AboutConfig
|
|
_PREF_CreateChildList
|
|
_PREF_NextChild
|
|
_PREF_RegisterCallback
|
|
_PREF_GetGlobalConfigObject
|
|
_PREF_GetConfigContext
|
|
_PREF_Cleanup
|
|
_PREF_GetConfigBool
|
|
_PREF_ReadUserJSFile
|
|
_PREF_QuietEvaluateJSBufferWithGlobalScope
|
|
_PREF_GetPrefConfigObject
|
|
_PREF_GetPrefType
|
|
_pref_savePref
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|