|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
You don't need a fax machine to get faxes. Get a fax-to-email fax number from CallWave. Try it free.
|
|
#1
|
|||
|
|||
|
We're trying to figure out some Pro*C code. Here's the snippet:
function pihttcr_create_request (context opaque, url in varchar2) return opaque; pragma interface (c, pihttcr_create_request, "pihttcr_create_request"); Where's the library? What does it do? Where can we find out more? Thanks. JP |
|
#2
|
|||
|
|||
|
It's a shared library. A listener that knows about the library has to be running to use the call.
Assuming you're in unix try using something like this for your app. --change the sl to so to suit your unix flavor Code:
for file in LIST `find $APP_HOME -name \*.sl`
do
nm $file | grep -q 'pihttcr_create_request'
if [ $? -eq 0 ] ; then
echo $file
fi
done
|
![]() |
| Viewing: Dev Shed Forums > Databases > Oracle Development > 10g/Pro*C pragma - pihttccr_create... |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|