На главную

On-line справка по Win32 API

Написать письмо
БЕСПЛАТНАЯ ежедневная online лотерея! Выигрывай каждый день БЕСПЛАТНО!
Список всех статей A-B-C-D-E-F-G-H-I-J-K-L-M-N-O-P-Q-R-S-T-U-V-W-X-Y-Z | Скачать Вниз

Creating a Shortcut to a File



The CreateLink function in the following example creates a shortcut. The parameters include a pointer to the name of the file to link to, a pointer to the name of the shortcut that you are creating, and a pointer to the description of the link. The description consists of the string, "Shortcut to filename," where filename is the name of the file to link to.

Because CreateLink calls the CoCreateInstance function, it is assumed that the CoInitialize function has already been called. CreateLink uses the IPersistFile interface to save the shortcut and the IShellLink interface to store the filename and description.

// CreateLink - uses the shell's IShellLink and IPersistFile interfaces
// to create and store a shortcut to the specified object.
// Returns the result of calling the member functions of the interfaces.
// lpszPathObj - address of a buffer containing the path of the object
// lpszPathLink - address of a buffer containing the path where the
// shell link is to be stored
// lpszDesc - address of a buffer containing the description of the
// shell link


HRESULT CreateLink(LPCSTR lpszPathObj,
LPSTR lpszPathLink, LPSTR lpszDesc)
{
HRESULT hres;
IShellLink* psl;

// Get a pointer to the IShellLink interface.
hres = CoCreateInstance(&CLSID_ShellLink, NULL,
CLSCTX_INPROC_SERVER, &IID_IShellLink, &psl);
if (SUCCEEDED(hres)) {
IPersistFile* ppf;

// Set the path to the shortcut target, and add the
// description.
psl->lpVtbl->SetPath(psl, lpszPathObj);

psl->lpVtbl->SetDescription(psl, lpszDesc);

// Query IShellLink for the IPersistFile interface for saving the
// shortcut in persistent storage.
hres = psl->lpVtbl->QueryInterface(psl, &IID_IPersistFile,
&ppf);

if (SUCCEEDED(hres)) {
WORD wsz[MAX_PATH];

// Ensure that the string is ANSI.
MultiByteToWideChar(CP_ACP, 0, lpszPathLink, -1,
wsz, MAX_PATH);


// Save the link by calling IPersistFile::Save.
hres = ppf->lpVtbl->Save(ppf, wsz, TRUE);
ppf->lpVtbl->Release(ppf);
}
psl->lpVtbl->Release(psl);
}
return hres;
}



Пригласи друзей и счет твоего мобильника всегда будет положительным!
Предыдущая статья
 
Сайт Народ.Ру Интернет
Следующая статья
Пригласи друзей и счет твоего мобильника всегда будет положительным!

Создание Сокращенное в Файл



Функция CreateLink в следующем примере создает сокращенный. Параметры включают указатель в имя файла, чтобы связываться на, указатель в имя сокращенного, которое Вы создаете, и указатель в описание связи. Описание состоит из строки, "Сокращенный на filename," где filename - имя файла, чтобы связывать, чтобы.

Поскольку CreateLink называет функцию CoCreateInstance, допущено что функция CoInitialize уже названа. CreateLink ИСПОЛЬЗУЕТ интерфейс IPersistFile, чтобы сохранять сокращенный и интерфейс IShellLink, чтобы хранить filename и описание.

// CreateLink - ИСПОЛЬЗУЕТ оболочку IShellLink и интерфейсы / IPersistFile/, чтобы создавать и хранить сокращенный на определенный объект.
// Возврат результат вызова функций члена интерфейсов.
// lpszPathObj - АДРЕС буфера, содержащего путь объекта // lpszPathLink - адрес буфера, содержащего путь где // связь оболочки должна быть сохранена
// lpszDesc - Адрес буфера, содержащего описание // связи оболочки


HRESULT CreateLink(LPCSTR lpszPathObj, LPSTR lpszPathLink, LPSTR lpszDesc)
{
hres HRESULT;
IShellLink* psl;

// Получите указатель на интерфейс IShellLink.
hres = CoCreateInstance(&CLSID_ShellLink, НЕДЕЙСТВИТЕЛЬНЫЙ, CLSCTX_INPROC_SERVER, &IID_IShellLink, &psl);
если (ПОЛУЧЕННОЕ(hres)) { IPersistFile* ppf;

// Установленный путь в сокращенную цель и добавляет // описание.
psl->lpVtbl->SetPath(psl, lpszPathObj);

psl->lpVtbl->SetDescription(psl, lpszDesc);

// Query IShellLink для интерфейса IPersistFile для экономии // сокращенный на устойчивом хранении.
hres = psl->lpVtbl->QueryInterface(psl, &IID_IPersistFile, &ppf);

если (ПОЛУЧЕННОЕ(hres)) { СЛОВО wsz[MAX_PATH];

// Проверьте, что строка - ANSI.
MultiByteToWideChar(CP_ACP, 0, lpszPathLink, -1, wsz, MAX_PATH);


// Сохраните связь вызывая IPersistFile::Сохраняемый.
hres = ppf->lpVtbl->Save(ppf, wsz, ИСТИНА);
ppf->lpVtbl->Release(ppf);
}
psl->lpVtbl->Release(psl);
}
возврат hres;
}



Вверх Version 1.3, Oct 26 2010 © 2007, 2010, mrhx Вверх
 mrhx software  Русский перевод OpenGL  Русский перевод Win32 API
 
Используются технологии uCoz