summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_string.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-06-30 19:04:08 -0400
committermidipix <writeonce@midipix.org>2016-06-30 20:40:38 -0400
commit3e65dd723c030ddbac5729e690bbb057cb29c57e (patch)
tree4b6b113899eb003e469b20f69b361c1f1c41fd54 /include/ntapi/nt_string.h
parentcc0351a872968560f0bc151b4c3044f447cb71ab (diff)
downloadntapi-3e65dd723c030ddbac5729e690bbb057cb29c57e.tar.bz2
ntapi-3e65dd723c030ddbac5729e690bbb057cb29c57e.tar.xz
nt_string.h, ntapi_vtbl: added snprintf (via ntdll).
Diffstat (limited to 'include/ntapi/nt_string.h')
-rw-r--r--include/ntapi/nt_string.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/ntapi/nt_string.h b/include/ntapi/nt_string.h
index fd9b312..10a413b 100644
--- a/include/ntapi/nt_string.h
+++ b/include/ntapi/nt_string.h
@@ -15,6 +15,12 @@ typedef int __cdecl ntapi_sprintf(
const char * format,
...);
+typedef int __cdecl ntapi_snprintf(
+ char * buffer,
+ size_t size,
+ const char * format,
+ ...);
+
typedef size_t __cdecl ntapi_strlen(const char * str);