#include <Wrappers.h>
Public Member Functions | |
Wrappers (void) | |
~Wrappers (void) | |
Static Public Member Functions | |
char * | netStrToCStr (String *inNetString) |
Converts a .NET String to a C String. Must call releaseCStr when done. | |
void | releaseCStr (char *inCStr) |
To be called when you are done with the CString so it can be deleted internally. | |
String * | CStrToNetStr (const char *inCStr) |
Converts an ANSI C String to a .NET String. | |
String * | WStrToNetStr (const wchar_t *inWStr) |
Converts a wide (2 byte) string to a .NET string. | |
wchar_t * | netStrToWStr (String *inNetString) |
Converts a .NET string to a wide (2 byte) string. Must call releaseWStr when done. | |
void | releaseWStr (wchar_t *inWStr) |
To be called when you are done with the C String so it can be internall deleted. |
|
Definition at line 43 of file Wrappers.cpp. |
|
Definition at line 47 of file Wrappers.cpp. |
|
Converts an ANSI C String to a .NET String.
Definition at line 69 of file Wrappers.cpp. |
|
Converts a .NET String to a C String. Must call releaseCStr when done.
Definition at line 52 of file Wrappers.cpp. |
|
Converts a .NET string to a wide (2 byte) string. Must call releaseWStr when done.
Definition at line 61 of file Wrappers.cpp. |
|
To be called when you are done with the CString so it can be deleted internally.
Definition at line 57 of file Wrappers.cpp. |
|
To be called when you are done with the C String so it can be internall deleted.
Definition at line 66 of file Wrappers.cpp. |
|
Converts a wide (2 byte) string to a .NET string.
Definition at line 75 of file Wrappers.cpp. |