Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 04-13-2004, 07:32 PM   #1 (permalink)
Crazy
 
Location: The state of denial
[C and C++] Calling C++ function from c

Hello all,
I have a c program that is doing a few things with a MySQL database and I found a piece of code written in C++ to determine the amount of CPU usage on my machine. I would like to call the function written in C++ in my C program and then write this to the database, compiling goes fine until the linker fails saying:

Linking...
net_sql.obj : error LNK2001: unresolved external symbol _GetCpuUsage
release/netsql.exe : fatal error LNK1120: 1 unresolved externals
Error executing link.exe.

Any idea why this is happening? Is there some way to do what I am trying to do?

I'm using Microsoft Visual C++ 6. The Cpu usage code is not a lib or dll, just cpp files.
madcow is offline  
Old 04-13-2004, 08:40 PM   #2 (permalink)
 
KnifeMissile's Avatar
 
Location: Waterloo, Ontario
How well do you know C++?

In C++, it's possible to have two functions with exactly the same function names, as long as they have a different signature. A function's signature is its parameters, their types, and the order they're declared (this includes no parameters, as well). How this is implemented in C++ is that the function's name is modified in a determinisitic and canonical way, depending on it's parameters. This process is often called name mangling although, officially, the function name is said to be decorated.
So, when your C linker goes looking into an object file made by your C++ compiler, it's looking for _GetCpuUage while the function has been "decorated" to something like _GetCpuUsage@@YA_NPAM@Z.

To stop C++ from decorating your function name, you use the extern "C" keyword(s). So, in the C++ header, you'd export the function like this:
Code:
extern "C" bool GetCpuUsage(float* percentage);
...and in your C++ source file, you'd have something like:
Code:
extern "C" bool GetCpuUsage(float* percentage) {&#10&#9// your implementation, here...&#10}
The function name GetCpuUsage won't get "mangled" and your C linker should be able to find it.

Actually, C++ programmers prefer to wrap the C++ function in a C function and export that so that they can both be used but I get the sense that you're not a C++ programmer, so this won't concern you.

I hope you found this interesting and helpful--so, happy programming!
KnifeMissile is offline  
Old 04-13-2004, 09:09 PM   #3 (permalink)
Crazy
 
Location: The state of denial
Thank you so much for your elequent explanation and solution. I'm actually a very decent programmer when it comes to C and Java, I haven't touched C++ in years. It didn't surprise me that C++ allows you to have same functions with different signitures, Java does that all the time. I just hadn't considered that the compiler was doing that to the function name and have never heard of having to extern a function in that way. Thanks again!
__________________
Smoke me a kipper, I'll be back for breakfast.
madcow is offline  
 

Tags
calling, function

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 04:55 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360