123456789101112131415161718192021222324 |
- #ifndef _HWPROCESS_API_
- #define _HWPROCESS_API_
- #ifdef HWPROCESS_EXPORTS
- #define HWPROCESS_API __declspec(dllexport)
- #else
- #define HWPROCESS_API __declspec(dllimport)
- #endif
- extern "C"
- {
- HWPROCESS_API unsigned long ExecuteProcess( const wchar_t* strName, const wchar_t* strParam, bool bShow );
- HWPROCESS_API bool KillProcess( unsigned long nProcID );
- HWPROCESS_API bool QuitProcess( const wchar_t* strExeName,unsigned long nProcID );
- HWPROCESS_API DWORD GetProcessidFromName( const wchar_t* ProcessName);
- };
- #endif //_HWPROCESS_API_
|