mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-28 05:19:27 +02:00
* Dotted filenames for package httpd13
This commit is contained in:
parent
100bdd5b0c
commit
ef5824a4d2
3
packages/httpd13/namespaced/Api.HttpD13.pas
Normal file
3
packages/httpd13/namespaced/Api.HttpD13.pas
Normal file
@ -0,0 +1,3 @@
|
||||
unit Api.HttpD13;
|
||||
{$DEFINE FPC_DOTTEDUNITS}
|
||||
{$i httpd.pas}
|
3
packages/httpd13/namespaces.lst
Normal file
3
packages/httpd13/namespaces.lst
Normal file
@ -0,0 +1,3 @@
|
||||
src/httpd.pas=namespaced/Api.HttpD13.pas
|
||||
{s*:src/}=namespaced/
|
||||
{i+:src/}
|
@ -21,7 +21,9 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
}
|
||||
{$IFNDEF FPC_DOTTEDUNITS}
|
||||
unit httpd;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
{$ifdef fpc}
|
||||
{$mode delphi}{$H+}
|
||||
@ -47,6 +49,15 @@ unit httpd;
|
||||
|
||||
interface
|
||||
|
||||
{$IFDEF FPC_DOTTEDUNITS}
|
||||
uses
|
||||
{$ifdef Windows}
|
||||
WinApi.Windows,
|
||||
{$ELSE}
|
||||
UnixApi.Types,
|
||||
{$ENDIF}
|
||||
System.CTypes;
|
||||
{$ELSE FPC_DOTTEDUNITS}
|
||||
uses
|
||||
{$ifdef WINDOWS}
|
||||
Windows,
|
||||
@ -54,6 +65,7 @@ uses
|
||||
UnixType,
|
||||
{$ENDIF}
|
||||
ctypes;
|
||||
{$ENDIF FPC_DOTTEDUNITS}
|
||||
|
||||
const
|
||||
{$ifndef fpc}
|
||||
|
Loading…
Reference in New Issue
Block a user