Problem
Tech-Archive recommends: Speed Up your PC by fixing your registry
Now I have a problem. I have some code like this:
void SetFieldName(LPCTSTR lpszNewValue)
{
char szFieldName[11];
strcpy(szFieldName,lpszNewValue);
}
When I debug it,the System tells me
"Error 1 error C2664: 'strcpy' : cannot convert parameter 2 from 'LPCTSTR'
to 'const char *' e:\MapControlTest\Map\MapTableDesc.cpp line 74"
Please tell me where my code wrong,thank you.
.
Relevant Pages
- [PATCH 2.6.19-rc1 V9] drivers: add LCD support
... Adds support for the ks0108 LCD Controller as a device driver. ... +The buffer should be a 128*64 unsigned char array: ... * GNU General Public License for more details. ... +static void cfag12864b_setbit ... (Linux-Kernel) - [PATCH 2.6.19-rc1 V9] drivers: add LCD support
... Adds support for the ks0108 LCD Controller as a device driver. ... +The buffer should be a 128*64 unsigned char array: ... * GNU General Public License for more details. ... +static void cfag12864b_setbit ... (Linux-Kernel) - Re: back once again...
... reference to type ... a, signed char ... int dycObjectP(dyt obj); ... void dycBeginClass; ... (comp.lang.misc) - [PATCH 2.6.18 V8] drivers: add LCD support
... Adds a LCD class for registering LCD devices. ... +The buffer should be a 128*64 unsigned char array: ... * GNU General Public License for more details. ... +static void cfag12864b_setbit ... (Linux-Kernel) - [PATCH 2.6.18 V7] drivers: add lcd display support
... Adds support for the cfag12864b LCD Display as a device driver. ... +The buffer should be a 128*64 unsigned char array: ... * GNU General Public License for more details. ... +static void cfag12864b_setbit ... (Linux-Kernel) |
|