102 lines
2.3 KiB
Modula-2
102 lines
2.3 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 XPPREF32 INITINSTANCE TERMINSTANCE
|
|
PROTMODE
|
|
|
|
DESCRIPTION 'Netscape 32-bit XP Preferences Library'
|
|
|
|
CODE LOADONCALL MOVEABLE DISCARDABLE
|
|
DATA PRELOAD MOVEABLE SINGLE NONSHARED
|
|
|
|
|
|
EXPORTS
|
|
PREF_ReadUserJSFile
|
|
PREF_Init
|
|
PREF_GetConfigContext
|
|
PREF_GetGlobalConfigObject
|
|
PREF_GetPrefConfigObject
|
|
PREF_Cleanup
|
|
PREF_ReadLockFile
|
|
PREF_EvaluateJSBuffer
|
|
PREF_QuietEvaluateJSBuffer
|
|
PREF_QuietEvaluateJSBufferWithGlobalScope
|
|
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_CopyPathPref
|
|
PREF_SetPathPref
|
|
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_GetConfigBool
|
|
PREF_PrefIsLocked
|
|
PREF_AboutConfig
|
|
PREF_CreateChildList
|
|
PREF_NextChild
|
|
PREF_RegisterCallback
|
|
PREF_UnregisterCallback
|
|
PREF_IsAutoAdminEnabled
|
|
;new GA added routines DSR070297
|
|
PREF_EvaluateConfigScript
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|