Last change
on this file since 32 was 32, checked in by Alex Taylor, 9 years ago |
Move several common functions into shared directory.
|
File size:
569 bytes
|
Rev | Line | |
---|
[32] | 1 | // CONSTANTS
|
---|
| 2 |
|
---|
| 3 | #define US_COMPOUND_MAXZ 250 // max length of a compound variable name
|
---|
| 4 | #define US_ERRSTR_MAXZ 250 // max length of an error string
|
---|
| 5 |
|
---|
| 6 | static const char *PSZ_ZERO = "0";
|
---|
| 7 | static const char *PSZ_ONE = "1";
|
---|
| 8 |
|
---|
| 9 |
|
---|
| 10 | // FUNCTION DECLARATIONS
|
---|
| 11 |
|
---|
| 12 | BOOL SaveResultString( PRXSTRING prsResult, PCSZ pchBytes, ULONG ulBytes );
|
---|
| 13 | BOOL WriteStemElement( PCSZ pszStem, ULONG ulIndex, PCSZ pszValue );
|
---|
| 14 | BOOL WriteCompoundVariable( PCSZ pszStem, PCSZ pszTail, PCSZ pszValue );
|
---|
| 15 | void WriteErrorCode( ULONG ulError, PCSZ pszContext );
|
---|
| 16 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.