Git Product home page Git Product logo

Comments (5)

aleks-f avatar aleks-f commented on March 28, 2024
  1. I'll take care of JSON 64 bit project files.
  2. Apparently, 64-bit does not add underscore decoration.

Here's the patch:

@@ -129,7 +129,11 @@ inline void Net_API uninitializeNetwork();
 #if defined(POCO_OS_FAMILY_WINDOWS) && !defined(POCO_NET_NO_WINDOWS_INIT)
    #if defined(POCO_STATIC)
        extern "C" const struct NetworkInitializer pocoNetworkInitializer;
-       #pragma comment(linker, "/include:_pocoNetworkInitializer")
+       #ifdef _WIN64
+           #pragma comment(linker, "/include:pocoNetworkInitializer")
+       #else
+           #pragma comment(linker, "/include:_pocoNetworkInitializer")
+       #endif
    #endif // POCO_STATIC
 #endif // POCO_NET_NO_WINDOWS_INIT

from poco.

aleks-f avatar aleks-f commented on March 28, 2024

Note that VS IDE does not recognize _WIN64 but compiler does, at least in 2010. So, although #ifdef _WIN64 portion will be grayed out it is actually compiled. (UPDATE: same for VS 2008)

http://social.msdn.microsoft.com/Forums/en/vcgeneral/thread/3d75739b-6569-4496-8b45-0e0cf3b79b62

from poco.

aleks-f avatar aleks-f commented on March 28, 2024

Network initialization fixed:

9f76b49

from poco.

aleks-f avatar aleks-f commented on March 28, 2024

Added JSON VS100 64 bit project files:

3ace867

from poco.

spy293 avatar spy293 commented on March 28, 2024

Hi aleks-f! Can you put somewhere the files compiled? I'm not sure what files to change and it would be easier for me to put the files and keep a copy somewhere...

Thank you in advice for this help! :-D

from poco.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.