55 lines
1.5 KiB
C
Raw Normal View History

2001-01-01 00:00:00 +01:00
///////////////////////////////////////////////////////////////////////////////
//
// 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_