diff options
Diffstat (limited to '')
-rw-r--r-- | private/utils/windisk/src/profile.hxx | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/private/utils/windisk/src/profile.hxx b/private/utils/windisk/src/profile.hxx new file mode 100644 index 000000000..ecc29a804 --- /dev/null +++ b/private/utils/windisk/src/profile.hxx @@ -0,0 +1,32 @@ +//+--------------------------------------------------------------------------- +// +// Microsoft Windows +// Copyright (C) Microsoft Corporation, 1992 - 1994. +// +// File: profile.hxx +// +// Contents: Routines to load/save the profile +// +// History: 2-Sep-93 BruceFo Created +// +//---------------------------------------------------------------------------- + +#ifndef __PROFILE_HXX__ +#define __PROFILE_HXX__ + +VOID +WriteProfile( + VOID + ); + +VOID +ReadProfile( + VOID + ); + +VOID +SaveRestoreToolbar( + BOOL bSave + ); + +#endif // __PROFILE_HXX__ |