Changeset 92
- Timestamp:
- Aug 6, 2017, 9:59:15 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/common.c ¶
r88 r92 26 26 #include "eastring.h" 27 27 #include "object.h" 28 //#define __PMPRINTF__29 //#include "PMPRINTF.H"30 28 31 29 #ifdef XWORKPLACE … … 47 45 CHAR s[100]; 48 46 49 // usFunc is 0 for app initialization, 1 and for widget phases 1 and 2 initialization 50 //PmPrintfDisplayInterfaceVersionInfo(); 51 //PmPrintfQueueNameThisProcess(NULL); 52 47 // usFunc is 0 for app initialization, 1 and for widget phases 1 and 2 initialization 48 #ifdef __PMPRINTF__ 49 PmPrintfDisplayInterfaceVersionInfo(); 50 PmPrintfQueueNameThisProcess(NULL); 51 #endif 53 52 if (usFunc != 1) 54 53 DosSetPriority(PRTYS_THREAD, PRTYC_TIMECRITICAL, +31, 0); … … 105 104 106 105 GetIniFileName(ucFName, sizeof(ucFName)); 107 //Pmpf(("INI filenaame \"%s\"", ucFName));108 106 if (LoadSettings(hab, ucFName, &plswData->Settings) != 0) 109 107 rc1 = LSWERRCANTLOADSETTINGS; … … 261 259 APIRET rc; 262 260 263 //DebugHereIAm();264 261 DosRequestMutexSem(plswData->htmxFSMonDispatRunning, SEM_INDEFINITE_WAIT); 265 //DebugHereIAm();266 262 267 263 WinDeleteAtom(hatomtblAtomTbl, … … 295 291 296 292 if (usFunc != 1) { 297 //DebugHereIAm();298 293 DosRequestMutexSem(plswData->htmxFSMonDispatRunning, SEM_INDEFINITE_WAIT ); 299 294 DosFreeMem(plswData); -
TabularUnified trunk/eastring.c ¶
r82 r92 10 10 11 11 #include "EAString.h" 12 #define __PMPRINTF__12 //#define __PMPRINTF__ 13 13 #include "PMPRINTF.H" 14 14 -
TabularUnified trunk/fspopup.c ¶
r82 r92 19 19 #include <stdio.h> 20 20 #include <process.h> 21 #define __PMPRINTF__22 #include "PMPRINTF.H"23 21 24 22 #ifndef XWORKPLACE … … 84 82 LoadExceptq(&exRegRec, "", NULL); 85 83 #endif 86 DebugHereIAm();87 84 plswData = (PLSWDATA) pParm; 88 85 … … 103 100 } 104 101 rc = DosRequestMutexSem(plswData->htmxFSMonDispatRunning, SEM_INDEFINITE_WAIT ); 105 PmpfF(("Mon RequestMSem %i", rc));106 102 while (DosWaitEventSem(plswData->hevRunning, 10L) == ERROR_TIMEOUT) { 107 103 /* if we popup in PM reset the semaphore and post a triggering message; … … 163 159 if (hmonKbd != 0) 164 160 DosMonClose(hmonKbd); 165 DebugHereIAm();166 161 DosReleaseMutexSem(plswData->htmxFSMonDispatRunning); 167 162 #ifndef XWORKPLACE … … 236 231 for (;;) { 237 232 usCount = sizeof(keybuf); 238 if (DosMonRead 239 ((PBYTE) & monInBuf, DCWW_WAIT, (PBYTE) & keybuf, &usCount)) 233 if (DosMonRead((PBYTE) & monInBuf, DCWW_WAIT, (PBYTE) & keybuf, &usCount)) 240 234 break; 241 235 DosMonWrite((PBYTE) & monOutBuf, (PBYTE) & keybuf, usCount); -
TabularUnified trunk/h/lswitch.h ¶
r89 r92 34 34 #include <stdlib.h> 35 35 #include "api16.h" 36 37 //#define __PMPRINTF__ 38 #include "PMPRINTF.H" 36 39 37 40 //#define XWORKPLACE -
TabularUnified trunk/hook/lswhook.c ¶
r82 r92 20 20 #include <string.h> 21 21 #include <stdio.h> 22 #define __PMPRINTF__23 #include "PMPRINTF.H"24 22 25 23 /* -
TabularUnified trunk/lswmain.c ¶
r82 r92 20 20 #define INCL_LOADEXCEPTQ 21 21 #include "exceptq.h" 22 #define __PMPRINTF__23 #include "PMPRINTF.H"24 22 25 23 VOID main() -
TabularUnified trunk/object.c ¶
r82 r92 12 12 13 13 #include "object.h" 14 #define __PMPRINTF__14 //#define __PMPRINTF__ 15 15 #include "PMPRINTF.H" 16 16 -
TabularUnified trunk/pmpopup.c ¶
r82 r92 29 29 #include <unikbd.h> 30 30 #endif 31 #define __PMPRINTF__32 #include "PMPRINTF.H"33 31 34 32 /* we subclass the window procedure of the popup window frame */ -
TabularUnified trunk/settings.c ¶
r91 r92 20 20 #include "taskbar.h" 21 21 #include "lswres.h" 22 //#define __PMPRINTF__23 //#include "PMPRINTF.H"24 22 25 23 #define BKM_SETNOTEBOOKBUTTONS 0x0375 /* Set common pushbuttons */ … … 144 142 SKIPLIST *pSkipList; 145 143 146 //PmpfF(("pszfilename %s", pszFName));147 144 if (strlen(pszFName) != 0) { 148 145 if ((hini = PrfOpenProfile(hab, pszFName)) == NULLHANDLE) { 149 //DebugHereIAm();150 146 return 1; 151 147 } … … 162 158 return 3; 163 159 rc = PrfQueryProfileData(hini, PRF_APPNAME, PRF_SETTINGS, pBuf, &ulCbBuf); 164 if (!rc) { // return 2;160 if (!rc) { 165 161 rc = PrfQueryProfileData(HINI_USERPROFILE, PRF_APPNAME, PRF_SETTINGS, pBuf, &ulCbBuf); 166 162 if (pszFName != NULL) … … 176 172 } 177 173 } 178 //DebugHereIAm();179 174 if (!bChangedINI) { 180 175 ulIndex = sizeof(LSWSETTINGS) - 3 * sizeof(pSettings->SkipListPopup); … … 435 430 } 436 431 else 437 return 1; //hini = HINI_USERPROFILE;432 return 1; 438 433 ulSize = sizeof(UCHAR); 439 434 PrfWriteProfileData(hini, PRF_APPNAME, "VerMajor", &pSettings->ucVerMajor, ulSize); -
TabularUnified trunk/taskbar.c ¶
r86 r92 23 23 #include "lswres.h" 24 24 #include "object.h" 25 //#define __PMPRINTF__26 //#include "PMPRINTF.H"27 25 28 26 #define PROCITEMHGT 6/5 … … 1144 1142 SWCNTRL swctlItem; 1145 1143 SWP swpItem; 1146 BOOL bIconOnly;1144 //BOOL bIconOnly; 1147 1145 SHORT sId = 1148 1146 (SHORT) WinSendMsg(pbData->hwndSubWinMenu, … … 1185 1183 plswData->Settings.bGroupItems = FALSE; 1186 1184 WinSendMsg(plswData->hwndTaskBarClient, LSWM_INITBUTTONS, 0, 0); 1185 DosSleep(10); 1187 1186 plswData->Settings.bGroupItems = TRUE; 1188 1187 WinSendMsg(plswData->hwndTaskBarClient, LSWM_INITBUTTONS, 0, 0); … … 1815 1814 rc = DosKillThread(plswData->itidFSDispat); 1816 1815 rc1 = DosKillThread(plswData->itidFSMon); 1817 //PmpfF(("FSMon TID %i DosKill %i", plswData->itidFSMon, rc1));1818 //PmpfF(("FSMonDispt TID %i DosKill %i", plswData->itidFSDispat, rc));1819 1816 SwitcherTerm(plswData, 1); 1820 1817 mrc = plswData->pWidget->pfnwpDefWidgetProc(hwnd, msg, mp1, mp2); -
TabularUnified trunk/widget/lswidget.c ¶
r82 r92 45 45 46 46 // XWorkplace implementation headers 47 #include "center.h" // public XCenter interfaces 48 #define __PMPRINTF__ 49 #include "PMPRINTF.H" 47 #include "center.h" 50 48 51 49 #if 0
Note:
See TracChangeset
for help on using the changeset viewer.