stdafx.h 725 B

1234567891011121314151617181920212223242526272829303132
  1. // stdafx.h : include file for standard system include files,
  2. // or project specific include files that are used frequently, but
  3. // are changed infrequently
  4. //
  5. #pragma once
  6. #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
  7. // Windows Header Files:
  8. #include <windows.h>
  9. #ifdef NPS_DLL_EXAMPLE_EXPORTS
  10. #define NPS_DLL_EXAMPLE_API __declspec(dllexport)
  11. #else
  12. #define NPS_DLL_EXAMPLE_API __declspec(dllimport)
  13. #endif
  14. #include <Authif.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. DWORD NPS_DLL_EXAMPLE_API WINAPI RadiusExtensionProcess2(
  19. _Inout_ PRADIUS_EXTENSION_CONTROL_BLOCK pECB
  20. );
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. //void logger(const char * msg);