123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #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
- #include "NeroAPI.h"
- #define USING_NEROSDK
- BOOL NADLL_ATTR NeroAPIGlueConnect (void *reserved);
- void NADLL_ATTR NeroAPIGlueDone (void);
- HMODULE NADLL_ATTR NeroAPIGlueGetModuleHandle();
- BOOL NADLL_ATTR NeroAPIGlueAttachModule(HMODULE hNeroAPI,void *reserved);
- #ifdef __cplusplus
- }
- #endif
- #endif
|