Search

September 11, 2006
Learn »
...include "central.h"

	#define PROXY_DECLARE(proxy)											\
				typedef class I##proxy* PI##proxy;							\
				class NOVTABLE...
September 10, 2006
Learn »
...size.

I hate that C/C++ compatibility typedef/struct syntax. Confuses me every time - I...
September 09, 2006
Learn »
I forget :
LPCSTR is a Winapi typedef :
long pointer to a constant unicode portable string...
September 09, 2006
Learn »
...1)

/*Contexte d'enreg pour un fichier*/
typedef struct _stHFFileCtx {
	LPVOID pData;		/*pointeur vers une...
September 09, 2006
Learn »
...like to know how to translate :
typedef DWORD PCTXHF;
typedef PCTXHF far * PPCTXHF;

into D...
September 08, 2006
Issues »
...digitalmars.com
        ReportedBy: oskar.linde@gmail.com


typedef ubyte x = void;
void main() { new x...
September 08, 2006
General »
...audioMaster);

That works. Why? Because:

' extern (C)
' {
'     typedef AEffect *function(audioMasterCallback) mainFunc;
'     [snip]
' }

There's...
September 07, 2006
General »
...easiest to typedef them; the typedef picks up the extern(C).

extern (C) {
  typedef int...
September 01, 2006
General »
...then again, I always name my parameters.

typedef int x;
void foo(x);    //'x' is...
August 29, 2006
General »
...left > right ? 1 : 0));
}

class Array(T) {
    typedef int function(T, T) compare_func_t...
258 259 260 261 262 263 264 265 266 267 268
Next ›   Last »