How to create Windows Service in C/C++? [closed] - c++

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to create Windows Service (application running in background) using C/C++ language. How can I do this, can you give me a tutorial ?

Another platform independent way is to use boost::application
Example how to use can be found here.

Related

Particle Swarm Optimization in C++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I need to implement the PSO algorithm in C++. Is there any C++ library I can use to start with?
Particleswarm.info hosts a good PSO toolbox repository.

What is the best framework to connect mysql from c++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
Is there some kind of c++ framework that wrappers the c++ driver ?
So it will give me API to connect mysql and run sql queries?
You should check out MySql++

where can i find XFS API reference and samples? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I wanna work with CEN/XFS (Extensions for Financial Services), possibly in C#.NET.
could anyone tell me how and where can i find XFS last release API reference and samples?
and does .NET framework have classes & tools for XFS?
Thanks.

Distributed computing framework in c/c++ [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I am looking for a way to make distributed computing over a network (lan). Is there any good framework or a library for this purpose in C/C++.
Take a look at MPI.
Yes. Have you looked at MPI via e.g. Open MPI ?

Memcached client for Windows in C or C++? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I need a portable C/C++ solution, so I'm looking for a C/C++ client library for Memcached that work on both Windows and Unix. Any suggestions?
There's libmemcached in C. Should be most portable :)
http://people.freebsd.org/~seanc/libmemcache/
HTH