3
votes
8answers
181 views
Is there a good way of setting C/C++ member variables from string representations? (introspection-lite)
I've got a struct with some members that I want to be able to get and set from a string. Given that C++ doesn't have any introspection I figure I need some creative solution with …
0
votes
1answer
42 views
Combining wide string literal with string macro
I have a macro for a character string as follows:
#define APPNAME "MyApp"
Now I want to construct a wide string using this macro by doing something like:
const wchar_t *AppProg …
1
vote
5answers
85 views
Downside of this macro construct and possible alternatives
I recently saw some code using macros like
#define CONTAINS(Class, Name)\
private:\
std::list<Class> m_##Name##s;\
public:\
void add_##Name(const Cla …
0
votes
2answers
22 views
VBA Word Macro doesnt recognize whitespaces or wildcards
Hi guys,
I have a VBA Word Macro that gets words from .txt list and color highlight them in a word .doc document.
The problem is that the script ignores whitespaces and wildcard …
4
votes
4answers
137 views
__CLASS__ macro in C++
Is there a __CLASS__ macro in C++ which gives the class name similar to __FUNCTION__ macro which gives the function name
0
votes
1answer
14 views
Visual Studio 2008 BuildEvent Macros not Firing
I added this well documented macro to MyMacros, Environment Events in VS 2008 Macros in order to cancel failed builds:
Private Sub BuildEvents_OnBuildProjConfigDone(ByVal Project …
2
votes
1answer
17 views
Are there any websites dedicated to the distribution of Visual Studio Macros?
Preferably a site that has macros searchable by Visual Studio version.
1
vote
1answer
21 views
How to reformat Outlook mail item in VBA
Okay, i've got an Outlook 2003 VBA macro that clears a mail item's categories, and this is assigned to a button. However, i've got a conditional formatting rule that's already been …
0
votes
4answers
67 views
Converting a Scheme expression to a string
Given an expression '(lambda (x) x) How can I translate this into a string. I thought symbol->string will do the job but no it cant not a symbol.
e.g for a macro to-string:
(to- …
0
votes
2answers
85 views
C to C# conversion of #define macros
Hi,
How would you go about converting the following C #define into c#.
#define get16bits(d) (*((const uint16_t *) (d)))
#if !defined (get16bits)
#define g …
0
votes
3answers
112 views
#define for unsigned long
Hi,
I'm attempting to use the #define directive to change all of "ulong" to "unsigned long".
Here is an example:
#define ulong unsigned long
ulong idCounter = 0;
Sadly, I think …
3
votes
8answers
178 views
When should you use macros instead of inline functions?
In a previous question what I thought was a good answer was voted down for the suggested use of macros
#define radian2degree(a) (a * 57.295779513082)
#define degree2radian(a) (a * …
1
vote
5answers
139 views
C array initialization via macro
Hi!
Question's Background:
void dash(int *n, char c) is to draw characters c separated by '+'.
Parameter n is an array of ints, e.g. {1, 3, 2} and '-' for c should give "+-+---+--+ …
0
votes
2answers
55 views
strings.h and wrapping this macro with a macro check of whether
I infer from Google search results that strings.h (from here) is for UNIX systems. I would like to wrap the following line with a macro check of whether the host's operating system …
4
votes
3answers
69 views
Should I use a function or a macro to validate arguments in Clojure?
I have a group of numeric functions in Clojure that I want to validate the arguments for. There are numerous types of arguments expected by the functions, such as positive integers …
