File: pfcscanner_n_cst_filesrvunicode.sru
Size: 2308
Date: Sat, 08 May 2021 23:34:23 +0200
$PBExportHeader$pfcscanner_n_cst_filesrvunicode.sru
$PBExportComments$PFC Unicode File handler service
forward
global type pfcscanner_n_cst_filesrvunicode from pfcscanner_n_cst_filesrv
end type
end forward

global type pfcscanner_n_cst_filesrvunicode from pfcscanner_n_cst_filesrv
end type
global pfcscanner_n_cst_filesrvunicode pfcscanner_n_cst_filesrvunicode

type prototypes
end prototypes

type variables
end variables

forward prototypes
end prototypes

on pfcscanner_n_cst_filesrvunicode.create
TriggerEvent( this, "constructor" )
end on

on pfcscanner_n_cst_filesrvunicode.destroy
TriggerEvent( this, "destructor" )
end on

event constructor;call super::constructor;//////////////////////////////////////////////////////////////////////////////
// Event:  Constructor
// Description:   Set the instance variables for the directory separator
//                and wildcard for all files for this OS.
//////////////////////////////////////////////////////////////////////////////
// Rev. History:  Version
//                5.0   Initial version
//                5.0.03   Replace Uint with Ulong in Local External Functions for full NT 4.0
//                         32 bit compatibility (handle type variables).
//                5.0.03   Changed object structure os_securityattributes datatype from char to string
//                         to fix NT 4.0 directory creation inconsistency
//////////////////////////////////////////////////////////////////////////////
/*
 * Open Source PowerBuilder Foundation Class Libraries
 *
 * Copyright (c) 2004-2017, All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted in accordance with the MIT License
 * 
 *
 * http://www.gnu.org/copyleft/lesser.html
 *
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals and was originally based on software copyright (c) 
 * 1996-2004 Sybase, Inc. http://www.sybase.com.  For more
 * information on the Open Source PowerBuilder Foundation Class
 * Libraries see https://github.com/OpenSourcePFCLibraries
*/
//////////////////////////////////////////////////////////////////////////////
is_Separator = "\"
is_AllFiles = "*.*"
is_FileType = "pul"
end event