Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

61 lines
1.9 KiB

// Copyright (c) 2001 Microsoft Corporation, All Rights Reserved
#ifndef __PROFILE_STRING_IMPL__
#define __PROFILE_STRING_IMPL__
#if _MSC_VER > 1000
#pragma once
#endif
///////////////////////////////////////////////////////////////////////////////
// get profile string
///////////////////////////////////////////////////////////////////////////////
DWORD APIENTRY WMIRegistry_PrivateProfileString (
LPCWSTR lpAppName,
LPCWSTR lpKeyName,
LPCWSTR lpDefault,
LPWSTR lpReturnedString,
DWORD nSize,
LPCWSTR lpFileName
);
DWORD APIENTRY WMIRegistry_ProfileString (
LPCWSTR lpAppName,
LPCWSTR lpKeyName,
LPCWSTR lpDefault,
LPWSTR lpReturnedString,
DWORD nSize
);
///////////////////////////////////////////////////////////////////////////////
// get profile section
///////////////////////////////////////////////////////////////////////////////
DWORD APIENTRY WMIRegistry_PrivateProfileSection (
LPCWSTR lpAppName,
LPWSTR lpReturnedString,
DWORD nSize,
LPCWSTR lpFileName
);
DWORD APIENTRY WMIRegistry_ProfileSection (
LPCWSTR lpAppName,
LPWSTR lpReturnedString,
DWORD nSize
);
///////////////////////////////////////////////////////////////////////////////
// get profile integer
///////////////////////////////////////////////////////////////////////////////
UINT APIENTRY WMIRegistry_PrivateProfileInt (
LPCWSTR lpAppName,
LPCWSTR lpKeyName,
INT nDefault
);
UINT APIENTRY WMIRegistry_ProfileInt (
LPCWSTR lpAppName,
LPCWSTR lpKeyName,
INT nDefault
);
#endif __PROFILE_STRING_IMPL_