-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
warnings cleanup, control panel applets information
- Loading branch information
Showing
14 changed files
with
90 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
@echo off | ||
set root=. | ||
:loop | ||
if exist "%root%\tools\mk\all.mk" goto found | ||
set root=%root%\.. | ||
goto loop | ||
:found | ||
set path=%root%\tools\conf\scripts;%path% | ||
call build %1 %2 %3 %4 %5 %6 %7 %8 %9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#! /bin/sh | ||
# | ||
|
||
export ROOT=. | ||
while [ ! -f "$ROOT/tools/mk/all.mk" ]; do ROOT="$ROOT/.."; done | ||
export PATH=$ROOT/tools/conf/scripts:$PATH | ||
build-lnx.sh $* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#include <cpl. h> | ||
typedef struct tagCPLINFO | ||
{ | ||
int idIcon; | ||
int idName; | ||
int idInfo; | ||
LONG lData; | ||
} CPLINFO; | ||
|
||
LONG CALLBACK CPlApplet(HWND hWnd, UINT command, LPARAM lParam1, LPARAM lParam2) | ||
{ | ||
|
||
switch (command) | ||
{ | ||
case CPL_INIT: | ||
return TRUE; | ||
|
||
case CPL_GETCOUNT: | ||
return 1; | ||
|
||
case CPL_INQUIRE: | ||
{ | ||
CPLINFO FAR * appletInfo = (CPLINFO FAR *) lParam2; | ||
|
||
appletInfo->idIcon = ICO_MAIN; | ||
appletInfo->idName = IDS_CPL_NAME; | ||
appletInfo->idInfo = IDS_CPL_INFO; | ||
appletInfo->lData = 0; | ||
return TRUE; | ||
} | ||
|
||
case CPL_DBLCLK: | ||
//display_cpl_sheets(hWnd); | ||
break; | ||
} | ||
|
||
return FALSE; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# | ||
# A Makefile for lzexpand.dll | ||
# (c) osFree project, | ||
# author, date | ||
# | ||
|
||
PROJ = main | ||
TRGT = $(PROJ).dll | ||
DESC = Main CPL | ||
srcfiles = $(p)main$(e) | ||
# linking dll file | ||
DLL = 1 | ||
EXPORTS = CPlApplet .1 | ||
|
||
DEST = os2$(SEP)mdos$(SEP)winos2$(SEP)system | ||
|
||
!include $(%ROOT)tools/mk/appsw16.mk |