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.
54 lines
1.5 KiB
54 lines
1.5 KiB
///////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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_
|
|
|
|
|