source: shared/shfuncs.h@ 32

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
RevLine 
[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
6static const char *PSZ_ZERO = "0";
7static const char *PSZ_ONE = "1";
8
9
10// FUNCTION DECLARATIONS
11
12BOOL SaveResultString( PRXSTRING prsResult, PCSZ pchBytes, ULONG ulBytes );
13BOOL WriteStemElement( PCSZ pszStem, ULONG ulIndex, PCSZ pszValue );
14BOOL WriteCompoundVariable( PCSZ pszStem, PCSZ pszTail, PCSZ pszValue );
15void WriteErrorCode( ULONG ulError, PCSZ pszContext );
16
Note: See TracBrowser for help on using the repository browser.