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.
|
|
/*****************************************************************/ /** Microsoft LAN Manager **/ /** Copyright(c) Microsoft Corp., 1991 **/ /*****************************************************************/
/*
* colwidth.hxx * * This file contains the column widths of multi-column listboxes. * Depending on the contents of these columns, their widths may * have to be adjusted during localization. * * All column widths are specified in number of pixels, so the driver * should preferably be tested for looks on a wide variety of monitors. * * History: * RustanL 23-Feb-1991 Created * */
#ifndef _COLWIDTH_HXX_
#define _COLWIDTH_HXX_
/* The width of the group/user name in the main permissions dialog.
*/ #define COL_WIDTH_SUBJECT_NAME (215)
#endif // _COLWIDTH_HXX_
|