Source code of Windows XP (NT5)
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
254 B

  1. #ifndef DllImport
  2. #define DllImport __declspec( dllimport)
  3. #endif
  4. #ifndef DllExport
  5. #define DllExport __declspec( dllexport)
  6. #endif
  7. #ifdef __cplusplus
  8. extern "C" {
  9. #endif
  10. int DllExport HTMLfilter(char *ifn, char *ofn);
  11. #ifdef __cplusplus
  12. }
  13. #endif