home *** CD-ROM | disk | FTP | other *** search
- #define INCL_DOS
- #include <os2.h>
-
- unsigned char buf[50];
-
- main(int argc, char *argv[], char *envp[])
- {
- int rc;
-
- rc = DosQuerySysInfo(QSV_TOTPHYSMEM, QSV_TOTPHYSMEM, &buf, sizeof(buf));
- printf("%u bytes\n", *((unsigned *) buf));
- printf("return code rc=%d\n",rc);
- }