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

📄 neroapiglue.h

📁 本源码是通过调用NeroAPI实现刻录功能
💻 H
字号:
/******************************************************************************
|* THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
|* ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
|* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
|* PARTICULAR PURPOSE.
|* 
|* Copyright 1995-2004 Ahead Software AG. All Rights Reserved.
|*-----------------------------------------------------------------------------
|* NeroSDK / NeroAPI
|*
|* PROGRAM: NeroAPIGlue.h
|*
|* PURPOSE: Functions for connecting to NeroAPI
******************************************************************************/


#ifndef __NEROAPIGLUE__
#define __NEROAPIGLUE__

#ifdef _NEROAPI_
#	pragma message("WARNING: Include 'NeroAPIGlue.h' BEFORE any other headers of the NeroAPI!")
#endif

#ifdef  __cplusplus
extern "C" {
#endif

/*
// All functions in NeroAPI.h are implemented here, too:
*/

#include "NeroAPI.h"

#define USING_NEROSDK

/*
// This function has to be called first.
*/

BOOL NADLL_ATTR NeroAPIGlueConnect (void *reserved);

/*
// This one cleans up after using the glue code.
*/
void NADLL_ATTR NeroAPIGlueDone (void);


// Returns the module handle of the loaded NeroAPI
HMODULE NADLL_ATTR NeroAPIGlueGetModuleHandle();


// Attach an already loaded NeroAPI module
// Do NOT call NeroAPIGlueDone after this method. This should only be called
// from the part of the application that called NeroAPIGlueInitEx or 
// NeroAPIGlueConnect
//
// NOTE: This method does not set the expected version of the NeroAPI.
// This is only done when the glue layer is initialized with NeroAPIGlueConnect
// or NeroAPIGlueInitEx
// Therefore, if you attach a NeroAPI module you should always set the
// expected version of NeroAPI before calling a NeroAPI method and restore the
// previously set version afterwards.
BOOL NADLL_ATTR NeroAPIGlueAttachModule(HMODULE hNeroAPI,void *reserved);


#ifdef  __cplusplus
}
#endif


#endif /* __NEROAPIGLUE__ */

⌨️ 快捷键说明

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