2010-02-26 11:43:19 +00:00
|
|
|
#pragma once
|
2007-10-20 10:20:05 +00:00
|
|
|
|
2013-01-24 23:00:42 +00:00
|
|
|
#define WIN32_NO_STATUS
|
|
|
|
#define _INC_WINDOWS
|
|
|
|
#define COM_NO_WINDOWS_H
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <windef.h>
|
|
|
|
#include <winbase.h>
|
|
|
|
#include <objbase.h>
|
2007-10-20 10:20:05 +00:00
|
|
|
#include <commctrl.h>
|
|
|
|
#include <cpl.h>
|
|
|
|
|
|
|
|
#include "resource.h"
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2007-10-21 12:58:35 +00:00
|
|
|
int idIcon;
|
|
|
|
int idName;
|
|
|
|
int idDescription;
|
2020-03-15 17:12:54 +00:00
|
|
|
APPLET_PROC AppletProc;
|
2007-10-20 10:20:05 +00:00
|
|
|
} APPLET, *PAPPLET;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
2007-10-21 12:58:35 +00:00
|
|
|
WCHAR szTarget[MAX_PATH];
|
|
|
|
WCHAR szWorkingDirectory[MAX_PATH];
|
|
|
|
WCHAR szDescription[MAX_PATH];
|
|
|
|
WCHAR szLinkName[MAX_PATH];
|
2020-03-15 17:12:54 +00:00
|
|
|
} CREATE_LINK_CONTEXT, *PCREATE_LINK_CONTEXT;
|
2007-10-20 10:20:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
extern HINSTANCE hApplet;
|
|
|
|
|
|
|
|
void ShowLastWin32Error(HWND hWndOwner);
|
|
|
|
|
|
|
|
/* EOF */
|