Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
2answers
329 views

Is there a tool that generates P/Invoke signatures for arbitrary unmanaged DLL?

I stumbled upon a tool that generates P/Invoke signatures for Microsoft's own unmanaged DLLs: PInvoke Interop Assistant Is there a similar tool that will generate P/Invoke signatures for third-party ...
9
votes
4answers
195 views

How to declare two functions taking each other's signature as argument?

Is it possible to emulate something like this: typedef boost::function<void(A)> B; typedef boost::function<void(B)> A; The main goal is to be able to write code like this (in ...
6
votes
3answers
82 views

Why is a VTABLE required when the derived class doesn't override the virtual function?

class base { public: void virtual fn(int i) { cout << "base" << endl; } }; class der : public base{ public: void fn(char i) { cout << "der" << ...
4
votes
3answers
91 views

Specifying struct in function signature

Say I have struct mystruct { }; Is there a difference between: void foo(struct mystruct x){} and void foo(mystruct x){} ?
4
votes
1answer
77 views

PHP core function arguments; manual says reference, however it accepts values

I've noticed some inconsistencies in the PHP manual; a number of core function signatures are documented to accept arguments by reference, however they accept arguments by value. I posted a more ...
2
votes
1answer
92 views

How to define template function within template class in *.inl file

I write template declaration in *.hpp file and their "definition" in *.inl file linked from *.hpp just like this: //*.hpp template <typename T1, typename T2> class SomeClass { public: void ...
2
votes
2answers
126 views

Is it possible to retrieve the argument types from a (Functor member's) function signature for use in a template?

Assume you have a functor: struct MyFunctor { bool operator ()( int value ) { return true; } }; Is it possible to retrieve a functor's member's argument type for use within your ...
1
vote
3answers
104 views

C++ and coverity issues

MyClass* const Func(const std::string& statename) for this coverity is giving the error Parse warning (PW.USELESS_TYPE_QUALIFIER_ON_RETURN_TYPE) type qualifier on return type is ...
0
votes
0answers
23 views

How can I use decorator.FunctionMaker to reimplement a signature-preserving functools.update_wrapper?

I have the following module: from decorator import decorator from functools import partial from inspect import getargspec def better_update_wrapper(wrapper,template): """Like ...
-1
votes
3answers
77 views

Wrap many C calling functions to single implementation

``I have a requirement that the function call will have different names but all of them should refer to the same definition while executing. For example, i have a function calls like UINT8 ...