Windows2003-3790/base/win32/winnls/data/tools/euroconv/users.h
2020-09-30 16:53:55 +02:00

55 lines
1.5 KiB
C

///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2001, Microsoft Corporation All rights reserved.
//
// Module Name:
//
// users.h
//
// Abstract:
//
// This file contains the users dialog of the euroconv.exe utility.
//
// Revision History:
//
// 2001-07-30 lguindon Created.
//
///////////////////////////////////////////////////////////////////////////////
#ifndef _USERS_H_
#define _USERS_H_
///////////////////////////////////////////////////////////////////////////////
//
// Include Files.
//
///////////////////////////////////////////////////////////////////////////////
#include "euroconv.h"
///////////////////////////////////////////////////////////////////////////////
//
// Defines.
//
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
//
// Functions Prototypes.
//
///////////////////////////////////////////////////////////////////////////////
INT_PTR CALLBACK UsersDialogProc(HWND hWndDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
BOOL UsersDialog(HWND hDlg);
void ListUsersInfo(HWND hDlg);
void ListUsersInfoFromRegistry(HWND hDlg);
void ListUsersInfoFromFile(HWND hDlg);
void AddToList(HWND hDlg, LPSTR user, LCID locale);
void GetUserNameFromRegistry(LPSTR strKey, int cbKey, LPSTR name, int cbname);
#endif //_USERS_H_