Relocation Agency – Moving From One Place to Other Has Become Easier Now

2019-05-22 Thread movingshifting
Gone are the days when relocation was a tough and chaotic exercise. These days the task of relocation has become much easier due to the advent of many relocation agencies and their valuable services. They take up all physical tasks and our job is left only to guide them occasionally. Relocation

Re: thiscall calling convention?

2019-05-22 Thread jangko
This is a perfect job for Nim macros. You can use macros API to construct generated code or generate string of Nim code then parsed by parseStmt, or a mix of both. With macros, you can generate not only type declaration, but also convenience wrapper at the same time. Here is an incomplete exam

Re: Is something like EnTT possible with Nim?

2019-05-22 Thread doofenstein
ha, you might be interested in this ECS implementation, from one of my failed Nim game engine attempts: [https://gist.github.com/RSDuck/6c8caf82aeb88991d440b228b3f32f06](https://gist.github.com/RSDuck/6c8caf82aeb88991d440b228b3f32f06) Note that this is mostly untested. For examples look at the b

Re: htmlparser innerText

2019-05-22 Thread johnconway
Is the HTML spec relevant? The nodes are being converted to text, not HTML. Whitespace is part of that text. The inconsistency between htmlParser and xmlParser is odd though.

thiscall calling convention?

2019-05-22 Thread jdm
Hi, I am trying to use a certain COM interface (ITextHost) from Nim. Under the hood, COM is basically C++ objects, so I defined a type for the vtable, added a pointer to the vtable to my object type, and I can pass a pointer to my object to the API. It works as expected - however only under 64 b