NxST_SYMBOLFNCLSTATUSMAP(30) - Financial Status Flags
#define | Value | Comments |
---|---|---|
RestoredGood | 0x00000001 | |
Bankrupt | 0x00000002 | |
Deficient | 0x00000004 | |
Delinquent | 0x00000008 | |
Suspended | 0x00000010 |
You may use code from a helper header file
You may use the code below in your own program
// example
bool bIsRestoredGood = (field & nxST_SYMBOLFNCLSTATUSMAP::RestoredGood) != 0;
bool bIsBankrupt = (field & nxST_SYMBOLFNCLSTATUSMAP::Bankrupt) != 0;
bool bIsDeficient = (field & nxST_SYMBOLFNCLSTATUSMAP::Deficient) != 0;
bool bIsDelinquent = (field & nxST_SYMBOLFNCLSTATUSMAP::Delinquent) != 0;
bool bIsSuspended = (field & nxST_SYMBOLFNCLSTATUSMAP::Suspended) != 0;