You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
501 B
18 lines
501 B
#ifndef HNFBLOCK_H_
|
|
#define HNFBLOCK_H_
|
|
#include <iethread.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" { /* Assume C declarations for C++. */
|
|
#endif /* __cplusplus */
|
|
|
|
DECLARE_HANDLE(HNFBLOCK);
|
|
|
|
HNFBLOCK ConvertNFItoHNFBLOCK(IETHREADPARAM* pInfo, LPCTSTR pszPath, DWORD dwProcId);
|
|
IETHREADPARAM *ConvertHNFBLOCKtoNFI(HNFBLOCK hBlock);
|
|
|
|
#ifdef __cplusplus
|
|
} /* End of extern "C" {. */
|
|
#endif /* __cplusplus */
|
|
|
|
#endif // HNFBLOCK_H_
|