*--------------------------------------------------------------
*/
-int
-Tk_PlaceCmd(clientData, interp, argc, argv)
- ClientData clientData; /* Main window associated with interpreter. */
- Tcl_Interp *interp; /* Current interpreter. */
- int argc; /* Number of arguments. */
- char **argv; /* Argument strings. */
+int
+Tk_PlaceCmd (
+ ClientData clientData, /* Main window associated with interpreter. */
+ Tcl_Interp *interp, /* Current interpreter. */
+ int argc, /* Number of arguments. */
+ char **argv /* Argument strings. */
+)
{
Tk_Window tkwin;
Slave *slavePtr;
*/
static Slave *
-FindSlave(tkwin)
- Tk_Window tkwin; /* Token for desired slave. */
+FindSlave (
+ Tk_Window tkwin /* Token for desired slave. */
+)
{
Tcl_HashEntry *hPtr;
register Slave *slavePtr;
*----------------------------------------------------------------------
*/
-static void
-UnlinkSlave(slavePtr)
- Slave *slavePtr; /* Slave structure to be unlinked. */
+static void
+UnlinkSlave (
+ Slave *slavePtr /* Slave structure to be unlinked. */
+)
{
register Master *masterPtr;
register Slave *prevPtr;
*/
static Master *
-FindMaster(tkwin)
- Tk_Window tkwin; /* Token for desired master. */
+FindMaster (
+ Tk_Window tkwin /* Token for desired master. */
+)
{
Tcl_HashEntry *hPtr;
register Master *masterPtr;
*----------------------------------------------------------------------
*/
-static int
-ConfigureSlave(interp, slavePtr, argc, argv)
- Tcl_Interp *interp; /* Used for error reporting. */
- Slave *slavePtr; /* Pointer to current information
+static int
+ConfigureSlave (
+ Tcl_Interp *interp, /* Used for error reporting. */
+ Slave *slavePtr, /* Pointer to current information
* about slave. */
- int argc; /* Number of config arguments. */
- char **argv; /* String values for arguments. */
+ int argc, /* Number of config arguments. */
+ char **argv /* String values for arguments. */
+)
{
register Master *masterPtr;
int c, length, result;
*----------------------------------------------------------------------
*/
-static void
-RecomputePlacement(clientData)
- ClientData clientData; /* Pointer to Master record. */
+static void
+RecomputePlacement (
+ ClientData clientData /* Pointer to Master record. */
+)
{
register Master *masterPtr = (Master *) clientData;
register Slave *slavePtr;
*----------------------------------------------------------------------
*/
-static void
-MasterStructureProc(clientData, eventPtr)
- ClientData clientData; /* Pointer to Master structure for window
+static void
+MasterStructureProc (
+ ClientData clientData, /* Pointer to Master structure for window
* referred to by eventPtr. */
- XEvent *eventPtr; /* Describes what just happened. */
+ XEvent *eventPtr /* Describes what just happened. */
+)
{
register Master *masterPtr = (Master *) clientData;
register Slave *slavePtr, *nextPtr;
*----------------------------------------------------------------------
*/
-static void
-SlaveStructureProc(clientData, eventPtr)
- ClientData clientData; /* Pointer to Slave structure for window
+static void
+SlaveStructureProc (
+ ClientData clientData, /* Pointer to Slave structure for window
* referred to by eventPtr. */
- XEvent *eventPtr; /* Describes what just happened. */
+ XEvent *eventPtr /* Describes what just happened. */
+)
{
register Slave *slavePtr = (Slave *) clientData;
*/
/* ARGSUSED */
-static void
-PlaceRequestProc(clientData, tkwin)
- ClientData clientData; /* Pointer to our record for slave. */
- Tk_Window tkwin; /* Window that changed its desired
+static void
+PlaceRequestProc (
+ ClientData clientData, /* Pointer to our record for slave. */
+ Tk_Window tkwin /* Window that changed its desired
* size. */
+)
{
Slave *slavePtr = (Slave *) clientData;
Master *masterPtr;