StkNet.h
上传用户:zhanglf88
上传日期:2013-11-19
资源大小:6036k
文件大小:1k
源码类别:

金融证券系统

开发平台:

Visual C++

  1. #pragma once
  2. #ifndef STKNET_DLL
  3. #if defined(STKNET_STATIC) 
  4.   #if defined (_DEBUG) 
  5. #pragma comment(lib,"StkNet30dStatic.lib") 
  6. #pragma message("Automatically linking with StkNet30dStatic.lib") 
  7.   #else 
  8. #pragma comment(lib,"StkNet30Static.lib") 
  9. #pragma message("Automatically linking with StkNet30Static.lib") 
  10.   #endif 
  11. #elif defined(_DEBUG) 
  12.   #pragma comment(lib,"StkNet30d.lib") 
  13.   #pragma message("Automatically linking with StkNet30d.dll") 
  14. #else 
  15.   #pragma comment(lib,"StkNet30.lib") 
  16.   #pragma message("Automatically linking with StkNet30.dll") 
  17. #endif 
  18. #endif
  19. #if !defined(STKNET_STATIC)
  20. #ifdef STKNET_DLL
  21. #define STKNET_API __declspec(dllexport)
  22. #else
  23. #define STKNET_API __declspec(dllimport)
  24. #endif
  25. #else 
  26. #define STKNET_API
  27. #endif
  28. #include "QSProfile.h"
  29. #include "XMLDoc.h"
  30. #include "HttpClt.h"
  31. #include "NetDB.h"
  32. #include "InfoZip.h"
  33. #include "Secret.h"
  34. #include "AfxCore.h"
  35. #include "StkReceiver.h"
  36. #include "StartupDlg.h"