⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 oleinst.h

📁 英文版的 想要的话可以下载了 为大家服务
💻 H
字号:
/*
 * OLEINST.C
 *
 * OLE-Specific installation data types and function prototypes.
 *
 * Copyright(c) Microsoft Corp. 1992-1994 All Rights Reserved
 * Win32 version, January 1994
 */

#ifdef WIN32
#include <winreg.h>
#else
#include <shellapi.h>
#endif


typedef struct
    {
    LPSTR       pszServerName;      //Full server name.
    LPSTR       pszServerClass;     //Short server class name.
    LPSTR       pszServerPath;      //Full path to server module.
    LPSTR       pszHandlerPath;     //Optional Full path to object handler DLL.
    LPSTR       pszExt;             //File extension for the server.
    LPSTR      *ppszVerbs;          //Pointer to array of LPSTRs to verbs.
    UINT        cVerbs;             //Number of verbs in array.
    LPSTR       pszSetFormats;      //Optional CSV list of accepted formats.
    LPSTR       pszRequestFormats;  //Optional CSV list of requestable formats.
    BOOL        fExecute;           //Is OleExecute supported?
    } REGINSTALL;

typedef REGINSTALL FAR *LPREGINSTALL;
#define CBREGINSTALL sizeof(REGINSTALL)


//Function prototypes
BOOL     WINAPI FRegDBInstall(void);
BOOL     WINAPI FOLEServerInstall(LPREGINSTALL);
BOOL     PASCAL FKeyCreate(LPSTR, LPSTR, LPSTR);


//Verbs
#define OBJVERB_EDIT    0
#define OBJVERB_PLAY    1
#define OBJVERB_MAX     1

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -