Sorry for the basic question here folks. It's been a while and wheels are turning slowly this morning.
I'm translating a header file and have the following structure:
I'm wondering how best to handle the first field in the corresponding PB TYPE declaration. Should I define lpszName as a DWORD or would an ASCIIZ PTR work?
I'm translating a header file and have the following structure:
Code:
'typedef struct ss_ct_createeditorcontrol_args '{ ' LPTSTR lpszName; // in: name of custom celltype ' HWND hWndSpread; // in: HWND of Spread control ' long lStyle; // in: style for custom celltype ' int CtrlId; // in: Value to use for control id ' HWND hWndEditor; // out: HWND of editor control '} SS_CT_CREATEEDITORCONTROL_ARGS, FAR *LPSS_CT_CREATEEDITORCONTROL_ARGS;
Comment