Hello,
I have a quick question does “itoa” exist in the NT
kernel or do I have write my own api. Basically I want
to use this in a driver instead of application code.
Much appreciated,
Garyc
Hello,
I have a quick question does “itoa” exist in the NT
kernel or do I have write my own api. Basically I want
to use this in a driver instead of application code.
Much appreciated,
Garyc
Check ntoskrnl.exe’s exports, and you will get an answer to your question…
Anton Bassov
Thank you so much.
— xxxxx@hotmail.com wrote:
Check ntoskrnl.exe’s exports, and you will get an
answer to your question…Anton Bassov
NTFSD is sponsored by OSR
For our schedule debugging and file system seminars
(including our new fs mini-filter seminar) visit:
http://www.osr.com/seminarsYou are currently subscribed to ntfsd as:
xxxxx@yahoo.com
To unsubscribe send a blank email to
xxxxx@lists.osr.com
I don’t know whether it exists, but out of curiosity, why do you think you
need this? Generally, in kernel mode, integer to string conversions are
done to create strings like unique device names. If that is the type of
thing you are doing, I recommend using RtlStringXXXPrintf().
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of gary clark
Sent: Tuesday, October 16, 2007 2:57 PM
To: Windows File Systems Devs Interest List
Subject: RE:[ntfsd] itoa
Thank you so much.
— xxxxx@hotmail.com wrote:
Check ntoskrnl.exe’s exports, and you will get an answer to your
question…Anton Bassov
NTFSD is sponsored by OSR
For our schedule debugging and file system seminars (including our new
fs mini-filter seminar) visit:
http://www.osr.com/seminarsYou are currently subscribed to ntfsd as:
xxxxx@yahoo.com
To unsubscribe send a blank email to
xxxxx@lists.osr.com
NTFSD is sponsored by OSR
For our schedule debugging and file system seminars (including our new fs
mini-filter seminar) visit:
http://www.osr.com/seminars
You are currently subscribed to ntfsd as: xxxxx@privtek.com To unsubscribe
send a blank email to xxxxx@lists.osr.com
The ISO C++ conformant named version, _itoa, is exported, as is _itow. I would agree with Dan that there are a few documented functions that do more or less the same thing.
Good luck,
mm
> The ISO C++ conformant named version, _itoa, is exported, as is _itow.
Actually, ntoskrnl.exe exports both _itoa() and _itow()…
Anton Bassov
The ISO C++ conformant named version, _itoa, is exported, as is _itow.
Actually, ntoskrnl.exe exports both _itoa() and _itow()…
What is it you are clarifying?
mm
Martin,
What is it you are clarifying?
Sorry, I read “as is _itow” like “as _itow”, i.e. I thought you were saying _itow and _itoa are exactly the same function ( sometimes you may see two fuction names with the same RVA, i.e. two names for the same entry). I realized my mistake in interpretating your post after already having posted my message…
Anton Bassov
I suggest you use strsafe.h functions
xxxxx@gmail.com wrote:
I suggest you use strsafe.h functions
Use ntstrsafe.h and link with ntstrsafe.lib. strsafe.h is for user
mode; the WDK confuses the issue by talking about it for some reason.
As Dan mentioned already, the closest thing to _itoa() is probably
RtlStringCbPrintf() or RtlStringCchPrintf().
Good luck,
mm
> WDK confuses the issue by talking about it for some reason.
Thank you
Thankyou for the clarification on this.
Much appreciated,
Garyc
— Martin O’Brien wrote:
> xxxxx@gmail.com wrote:
> > I suggest you use strsafe.h functions
> >
>
> Use ntstrsafe.h and link with ntstrsafe.lib.
> strsafe.h is for user
> mode; the WDK confuses the issue by talking about it
> for some reason.
> As Dan mentioned already, the closest thing to
> _itoa() is probably
> RtlStringCbPrintf() or RtlStringCchPrintf().
>
> Good luck,
>
> mm
>
>
> —
> NTFSD is sponsored by OSR
>
> For our schedule debugging and file system seminars
> (including our new fs mini-filter seminar) visit:
> http://www.osr.com/seminars
>
> You are currently subscribed to ntfsd as:
> xxxxx@yahoo.com
> To unsubscribe send a blank email to
> xxxxx@lists.osr.com
>